| Index: chrome/browser/ui/auto_login_infobar_delegate.cc
|
| diff --git a/chrome/browser/ui/auto_login_infobar_delegate.cc b/chrome/browser/ui/auto_login_infobar_delegate.cc
|
| index c4e20c0f1f8081ca8c526813fac6086e2769b471..9cb09d7d7decdb9e03607aaa6aa45c9c4f8b4d8d 100644
|
| --- a/chrome/browser/ui/auto_login_infobar_delegate.cc
|
| +++ b/chrome/browser/ui/auto_login_infobar_delegate.cc
|
| @@ -49,15 +49,15 @@ class AutoLoginRedirector : public UbertokenConsumer,
|
| public:
|
| AutoLoginRedirector(content::WebContents* web_contents,
|
| const std::string& args);
|
| - virtual ~AutoLoginRedirector();
|
| + ~AutoLoginRedirector() override;
|
|
|
| private:
|
| // Overriden from UbertokenConsumer:
|
| - virtual void OnUbertokenSuccess(const std::string& token) override;
|
| - virtual void OnUbertokenFailure(const GoogleServiceAuthError& error) override;
|
| + void OnUbertokenSuccess(const std::string& token) override;
|
| + void OnUbertokenFailure(const GoogleServiceAuthError& error) override;
|
|
|
| // Implementation of content::WebContentsObserver
|
| - virtual void WebContentsDestroyed() override;
|
| + void WebContentsDestroyed() override;
|
|
|
| // Redirect tab to MergeSession URL, logging the user in and navigating
|
| // to the desired page.
|
|
|