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

Unified Diff: chrome/browser/ui/cocoa/content_settings/collected_cookies_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/content_settings/collected_cookies_mac.h
diff --git a/chrome/browser/ui/cocoa/content_settings/collected_cookies_mac.h b/chrome/browser/ui/cocoa/content_settings/collected_cookies_mac.h
index fe4d59df4748ef4b023b132fc10955a92e771bf3..8fd3c5251f4cd90affa82af09b73859ba8a78999 100644
--- a/chrome/browser/ui/cocoa/content_settings/collected_cookies_mac.h
+++ b/chrome/browser/ui/cocoa/content_settings/collected_cookies_mac.h
@@ -27,13 +27,12 @@ class CollectedCookiesMac : public ConstrainedWindowMacDelegate,
public content::NotificationObserver {
public:
CollectedCookiesMac(content::WebContents* web_contents);
- virtual ~CollectedCookiesMac();
+ ~CollectedCookiesMac() override;
void PerformClose();
// ConstrainedWindowMacDelegate implementation.
- virtual void OnConstrainedWindowClosed(
- ConstrainedWindowMac* window) override;
+ void OnConstrainedWindowClosed(ConstrainedWindowMac* window) override;
CollectedCookiesWindowController* sheet_controller() const {
return sheet_controller_.get();
@@ -41,9 +40,9 @@ class CollectedCookiesMac : public ConstrainedWindowMacDelegate,
private:
// NotificationObserver implementation.
- virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override;
+ void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override;
content::NotificationRegistrar registrar_;

Powered by Google App Engine
This is Rietveld 408576698