Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / extensions / browser / api / declarative / declarative_api.h
index 72180dd..7f3b1a2 100644 (file)
@@ -17,11 +17,11 @@ class RulesFunction : public AsyncExtensionFunction {
   RulesFunction();
 
  protected:
-  virtual ~RulesFunction();
+  ~RulesFunction() override;
 
   // ExtensionFunction:
-  virtual bool HasPermission() OVERRIDE;
-  virtual bool RunAsync() OVERRIDE;
+  bool HasPermission() override;
+  bool RunAsync() override;
 
   // Concrete implementation of the RulesFunction that is being called
   // on the thread on which the respective RulesRegistry lives.
@@ -36,10 +36,10 @@ class EventsEventAddRulesFunction : public RulesFunction {
   DECLARE_EXTENSION_FUNCTION("events.addRules", EVENTS_ADDRULES)
 
  protected:
-  virtual ~EventsEventAddRulesFunction() {}
+  ~EventsEventAddRulesFunction() override {}
 
   // RulesFunction:
-  virtual bool RunAsyncOnCorrectThread() OVERRIDE;
+  bool RunAsyncOnCorrectThread() override;
 };
 
 class EventsEventRemoveRulesFunction : public RulesFunction {
@@ -47,10 +47,10 @@ class EventsEventRemoveRulesFunction : public RulesFunction {
   DECLARE_EXTENSION_FUNCTION("events.removeRules", EVENTS_REMOVERULES)
 
  protected:
-  virtual ~EventsEventRemoveRulesFunction() {}
+  ~EventsEventRemoveRulesFunction() override {}
 
   // RulesFunction:
-  virtual bool RunAsyncOnCorrectThread() OVERRIDE;
+  bool RunAsyncOnCorrectThread() override;
 };
 
 class EventsEventGetRulesFunction : public RulesFunction {
@@ -58,10 +58,10 @@ class EventsEventGetRulesFunction : public RulesFunction {
   DECLARE_EXTENSION_FUNCTION("events.getRules", EVENTS_GETRULES)
 
  protected:
-  virtual ~EventsEventGetRulesFunction() {}
+  ~EventsEventGetRulesFunction() override {}
 
   // RulesFunction:
-  virtual bool RunAsyncOnCorrectThread() OVERRIDE;
+  bool RunAsyncOnCorrectThread() override;
 };
 
 }  // namespace extensions