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