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

Unified Diff: chrome/browser/ui/cocoa/status_bubble_mac.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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 20066e063c1c8f4ac4a08319231062337134b72f..8911eaee30a5d78d260e79906c3464e80bf4de2b 100644
--- a/chrome/browser/ui/cocoa/status_bubble_mac.h
+++ b/chrome/browser/ui/cocoa/status_bubble_mac.h
@@ -33,15 +33,14 @@ class StatusBubbleMac : public StatusBubble {
};
StatusBubbleMac(NSWindow* parent, id delegate);
- virtual ~StatusBubbleMac();
+ ~StatusBubbleMac() override;
// 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 MouseMoved(const gfx::Point& location,
- bool left_content) override;
- virtual void UpdateDownloadShelfVisibility(bool visible) override;
+ void SetStatus(const base::string16& status) override;
+ void SetURL(const GURL& url, const std::string& languages) override;
+ void Hide() override;
+ void MouseMoved(const gfx::Point& location, bool left_content) override;
+ 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