| Index: chrome/browser/extensions/api/identity/gaia_web_auth_flow.h
|
| diff --git a/chrome/browser/extensions/api/identity/gaia_web_auth_flow.h b/chrome/browser/extensions/api/identity/gaia_web_auth_flow.h
|
| index 7eab8a520ee41e76188f1ac869ad353b2bcbeb61..2539e6830c3a4479ff22066a3048723c9782fabd 100644
|
| --- a/chrome/browser/extensions/api/identity/gaia_web_auth_flow.h
|
| +++ b/chrome/browser/extensions/api/identity/gaia_web_auth_flow.h
|
| @@ -70,13 +70,13 @@ class GaiaWebAuthFlow : public UbertokenConsumer, public WebAuthFlow::Delegate {
|
| virtual void Start();
|
|
|
| // UbertokenConsumer implementation:
|
| - virtual void OnUbertokenSuccess(const std::string& token) OVERRIDE;
|
| - virtual void OnUbertokenFailure(const GoogleServiceAuthError& error) OVERRIDE;
|
| + virtual void OnUbertokenSuccess(const std::string& token) override;
|
| + virtual void OnUbertokenFailure(const GoogleServiceAuthError& error) override;
|
|
|
| // WebAuthFlow::Delegate implementation.
|
| - virtual void OnAuthFlowFailure(WebAuthFlow::Failure failure) OVERRIDE;
|
| - virtual void OnAuthFlowURLChange(const GURL& redirect_url) OVERRIDE;
|
| - virtual void OnAuthFlowTitleChange(const std::string& title) OVERRIDE;
|
| + virtual void OnAuthFlowFailure(WebAuthFlow::Failure failure) override;
|
| + virtual void OnAuthFlowURLChange(const GURL& redirect_url) override;
|
| + virtual void OnAuthFlowTitleChange(const std::string& title) override;
|
|
|
| private:
|
| // Creates a WebAuthFlow, which will navigate to |url|. Can override
|
|
|