Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / extensions / renderer / dispatcher.h
index 91af795..fb1c6c7 100644 (file)
@@ -66,7 +66,7 @@ class Dispatcher : public content::RenderProcessObserver,
                    public UserScriptSetManager::Observer {
  public:
   explicit Dispatcher(DispatcherDelegate* delegate);
-  virtual ~Dispatcher();
+  ~Dispatcher() override;
 
   const std::set<std::string>& function_names() const {
     return function_names_;
@@ -156,10 +156,10 @@ class Dispatcher : public content::RenderProcessObserver,
                            CannotScriptWebstore);
 
   // RenderProcessObserver implementation:
-  virtual bool OnControlMessageReceived(const IPC::Message& message) OVERRIDE;
-  virtual void WebKitInitialized() OVERRIDE;
-  virtual void IdleNotification() OVERRIDE;
-  virtual void OnRenderProcessShutdown() OVERRIDE;
+  bool OnControlMessageReceived(const IPC::Message& message) override;
+  void WebKitInitialized() override;
+  void IdleNotification() override;
+  void OnRenderProcessShutdown() override;
 
   void OnActivateExtension(const std::string& extension_id);
   void OnCancelSuspend(const std::string& extension_id);
@@ -199,9 +199,8 @@ class Dispatcher : public content::RenderProcessObserver,
   void OnUsingWebRequestAPI(bool webrequest_used);
 
   // UserScriptSetManager::Observer implementation.
-  virtual void OnUserScriptsUpdated(
-      const std::set<std::string>& changed_extensions,
-      const std::vector<UserScript*>& scripts) OVERRIDE;
+  void OnUserScriptsUpdated(const std::set<std::string>& changed_extensions,
+                            const std::vector<UserScript*>& scripts) override;
 
   void UpdateActiveExtensions();