Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Unified Diff: chrome/browser/ui/cocoa/location_bar/page_action_decoration.h

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698