| Index: chrome/browser/ui/cocoa/location_bar/page_action_decoration.h
|
| diff --git a/chrome/browser/ui/cocoa/location_bar/page_action_decoration.h b/chrome/browser/ui/cocoa/location_bar/page_action_decoration.h
|
| index e5d860f5da07d1bb31ac00b266a00916dc67fded..f13978ce24de29f52b408800afb8317348909a57 100644
|
| --- a/chrome/browser/ui/cocoa/location_bar/page_action_decoration.h
|
| +++ b/chrome/browser/ui/cocoa/location_bar/page_action_decoration.h
|
| @@ -42,7 +42,7 @@ class PageActionDecoration : public ImageDecoration,
|
| bool preview_enabled() const { return preview_enabled_; }
|
|
|
| // Overridden from |ExtensionActionIconFactory::Observer|.
|
| - virtual void OnIconUpdated() OVERRIDE;
|
| + virtual void OnIconUpdated() override;
|
|
|
| // Called to notify the Page Action that it should determine whether
|
| // to be visible or hidden. |contents| is the WebContents that is
|
| @@ -54,12 +54,12 @@ class PageActionDecoration : public ImageDecoration,
|
| void SetToolTip(std::string tooltip);
|
|
|
| // Overridden from |LocationBarDecoration|
|
| - virtual CGFloat GetWidthForSpace(CGFloat width) OVERRIDE;
|
| - virtual bool AcceptsMousePress() OVERRIDE;
|
| - virtual bool OnMousePressed(NSRect frame, NSPoint location) OVERRIDE;
|
| - virtual NSString* GetToolTip() OVERRIDE;
|
| - virtual NSMenu* GetMenu() OVERRIDE;
|
| - virtual NSPoint GetBubblePointInFrame(NSRect frame) OVERRIDE;
|
| + virtual CGFloat GetWidthForSpace(CGFloat width) override;
|
| + virtual bool AcceptsMousePress() override;
|
| + virtual bool OnMousePressed(NSRect frame, NSPoint location) override;
|
| + virtual NSString* GetToolTip() override;
|
| + virtual NSMenu* GetMenu() override;
|
| + virtual NSPoint GetBubblePointInFrame(NSRect frame) override;
|
|
|
| // Activates the page action in its default frame, and, if |grant_active_tab|
|
| // is true, grants active tab permission to the extension. Returns true if
|
| @@ -79,7 +79,7 @@ class PageActionDecoration : public ImageDecoration,
|
| // Overridden from NotificationObserver:
|
| virtual void Observe(int type,
|
| const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) OVERRIDE;
|
| + const content::NotificationDetails& details) override;
|
|
|
| // The location bar view that owns us.
|
| LocationBarViewMac* owner_;
|
|
|