| 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;
|
|
|
|
|