| Index: chrome/browser/ui/login/login_prompt_test_utils.h
|
| diff --git a/chrome/browser/ui/login/login_prompt_test_utils.h b/chrome/browser/ui/login/login_prompt_test_utils.h
|
| index 429435e0f17962b6df9fd40b30b9f7d2389c66e3..224ea6e5337dd08d887ec150cf4254f70e2e9266 100644
|
| --- a/chrome/browser/ui/login/login_prompt_test_utils.h
|
| +++ b/chrome/browser/ui/login/login_prompt_test_utils.h
|
| @@ -19,11 +19,11 @@ class LoginHandler;
|
| class LoginPromptBrowserTestObserver : public content::NotificationObserver {
|
| public:
|
| LoginPromptBrowserTestObserver();
|
| - virtual ~LoginPromptBrowserTestObserver();
|
| + ~LoginPromptBrowserTestObserver() override;
|
|
|
| - 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;
|
|
|
| void AddHandler(LoginHandler* handler);
|
|
|
| @@ -90,9 +90,9 @@ class WindowedLoadStopObserver
|
| int notification_count);
|
|
|
| protected:
|
| - 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;
|
|
|
| private:
|
| int remaining_notification_count_; // Number of notifications remaining.
|
|
|