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

Unified Diff: chrome/browser/ui/webui/ntp/ntp_login_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/ntp/ntp_login_handler.h
diff --git a/chrome/browser/ui/webui/ntp/ntp_login_handler.h b/chrome/browser/ui/webui/ntp/ntp_login_handler.h
index af531be24d82c0ddcd4f33a44b8bce0e43d3d5e4..e3a67c4fb0eabe6327ae596ab1f59f1897cc7368 100644
--- a/chrome/browser/ui/webui/ntp/ntp_login_handler.h
+++ b/chrome/browser/ui/webui/ntp/ntp_login_handler.h
@@ -19,15 +19,15 @@ class NTPLoginHandler : public content::WebUIMessageHandler,
public content::NotificationObserver {
public:
NTPLoginHandler();
- virtual ~NTPLoginHandler();
+ ~NTPLoginHandler() override;
// WebUIMessageHandler interface
- virtual void RegisterMessages() override;
+ void RegisterMessages() override;
// content::NotificationObserver interface
- 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;
// Returns true if the login handler should be shown in a new tab page
// for the given |profile|. |profile| must not be NULL.

Powered by Google App Engine
This is Rietveld 408576698