| Index: chrome/browser/extensions/api/identity/gaia_web_auth_flow_unittest.cc
|
| diff --git a/chrome/browser/extensions/api/identity/gaia_web_auth_flow_unittest.cc b/chrome/browser/extensions/api/identity/gaia_web_auth_flow_unittest.cc
|
| index 20274212f3224894c224ed867ca7b7f26f5c8a8a..8b098156850f234853744253238ead7cb9ee4118 100644
|
| --- a/chrome/browser/extensions/api/identity/gaia_web_auth_flow_unittest.cc
|
| +++ b/chrome/browser/extensions/api/identity/gaia_web_auth_flow_unittest.cc
|
| @@ -22,7 +22,7 @@ class FakeWebAuthFlow : public WebAuthFlow {
|
| GURL(),
|
| WebAuthFlow::INTERACTIVE) {}
|
|
|
| - virtual void Start() OVERRIDE {}
|
| + virtual void Start() override {}
|
| };
|
|
|
| class TestGaiaWebAuthFlow : public GaiaWebAuthFlow {
|
| @@ -34,7 +34,7 @@ class TestGaiaWebAuthFlow : public GaiaWebAuthFlow {
|
| : GaiaWebAuthFlow(delegate, NULL, token_key, oauth2_client_id, "en-us"),
|
| ubertoken_error_(ubertoken_error_state) {}
|
|
|
| - virtual void Start() OVERRIDE {
|
| + virtual void Start() override {
|
| if (ubertoken_error_.state() == GoogleServiceAuthError::NONE)
|
| OnUbertokenSuccess("fake_ubertoken");
|
| else
|
| @@ -42,7 +42,7 @@ class TestGaiaWebAuthFlow : public GaiaWebAuthFlow {
|
| }
|
|
|
| private:
|
| - virtual scoped_ptr<WebAuthFlow> CreateWebAuthFlow(GURL url) OVERRIDE {
|
| + virtual scoped_ptr<WebAuthFlow> CreateWebAuthFlow(GURL url) override {
|
| return scoped_ptr<WebAuthFlow>(new FakeWebAuthFlow(this));
|
| }
|
|
|
|
|