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

Unified Diff: chrome/browser/ui/webui/theme_handler.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/webui/theme_handler.h
diff --git a/chrome/browser/ui/webui/theme_handler.h b/chrome/browser/ui/webui/theme_handler.h
index 81588c6b1ee0c8aa0613fffb7c9e039aed7df2b4..692f394b9cdc9facf0abd1a82788e54780a0a089 100644
--- a/chrome/browser/ui/webui/theme_handler.h
+++ b/chrome/browser/ui/webui/theme_handler.h
@@ -20,19 +20,19 @@ class ThemeHandler : public content::WebUIMessageHandler,
public content::NotificationObserver {
public:
explicit ThemeHandler();
- virtual ~ThemeHandler();
+ ~ThemeHandler() override;
private:
// content::WebUIMessageHandler implementation.
- virtual void RegisterMessages() override;
+ void RegisterMessages() override;
// Re/set the CSS caches.
void InitializeCSSCaches();
// content::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;
Profile* GetProfile() const;

Powered by Google App Engine
This is Rietveld 408576698