Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / location_bar_controller.h
index 730b3b3..e67430a 100644 (file)
@@ -30,20 +30,18 @@ class ExtensionRegistry;
 class LocationBarController : public ExtensionRegistryObserver {
  public:
   explicit LocationBarController(content::WebContents* web_contents);
-  virtual ~LocationBarController();
+  ~LocationBarController() override;
 
   // Returns the actions which should be displayed in the location bar.
   std::vector<ExtensionAction*> GetCurrentActions();
 
  private:
   // ExtensionRegistryObserver implementation.
-  virtual void OnExtensionLoaded(
-      content::BrowserContext* browser_context,
-      const Extension* extension) OVERRIDE;
-  virtual void OnExtensionUnloaded(
-      content::BrowserContext* browser_context,
-      const Extension* extension,
-      UnloadedExtensionInfo::Reason reason) OVERRIDE;
+  void OnExtensionLoaded(content::BrowserContext* browser_context,
+                         const Extension* extension) override;
+  void OnExtensionUnloaded(content::BrowserContext* browser_context,
+                           const Extension* extension,
+                           UnloadedExtensionInfo::Reason reason) override;
 
   // The associated WebContents.
   content::WebContents* web_contents_;