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

Unified Diff: chrome/browser/ui/cocoa/status_bubble_mac.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/status_bubble_mac.h
diff --git a/chrome/browser/ui/cocoa/status_bubble_mac.h b/chrome/browser/ui/cocoa/status_bubble_mac.h
index 9dbc7a24ec736ed2bbc07e9951ef962a42356ac3..20066e063c1c8f4ac4a08319231062337134b72f 100644
--- a/chrome/browser/ui/cocoa/status_bubble_mac.h
+++ b/chrome/browser/ui/cocoa/status_bubble_mac.h
@@ -36,12 +36,12 @@ class StatusBubbleMac : public StatusBubble {
virtual ~StatusBubbleMac();
// StatusBubble implementation.
- virtual void SetStatus(const base::string16& status) OVERRIDE;
- virtual void SetURL(const GURL& url, const std::string& languages) OVERRIDE;
- virtual void Hide() OVERRIDE;
+ virtual void SetStatus(const base::string16& status) override;
+ virtual void SetURL(const GURL& url, const std::string& languages) override;
+ virtual void Hide() override;
virtual void MouseMoved(const gfx::Point& location,
- bool left_content) OVERRIDE;
- virtual void UpdateDownloadShelfVisibility(bool visible) OVERRIDE;
+ bool left_content) override;
+ virtual void UpdateDownloadShelfVisibility(bool visible) override;
// Mac-specific method: Update the size and position of the status bubble to
// match the parent window. Safe to call even when the status bubble does not

Powered by Google App Engine
This is Rietveld 408576698