| Index: components/signin/core/browser/signin_oauth_helper.h
|
| diff --git a/chrome/browser/signin/signin_oauth_helper.h b/components/signin/core/browser/signin_oauth_helper.h
|
| similarity index 80%
|
| rename from chrome/browser/signin/signin_oauth_helper.h
|
| rename to components/signin/core/browser/signin_oauth_helper.h
|
| index f372d271416e6a3684d574c2bdbfcf9630ea0761..44e0f2b8972291e9b24cf2be0f799b31eafa5e4e 100644
|
| --- a/chrome/browser/signin/signin_oauth_helper.h
|
| +++ b/components/signin/core/browser/signin_oauth_helper.h
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CHROME_BROWSER_SIGNIN_SIGNIN_OAUTH_HELPER_H_
|
| -#define CHROME_BROWSER_SIGNIN_SIGNIN_OAUTH_HELPER_H_
|
| +#ifndef COMPONENTS_SIGNIN_CORE_BROWSER_SIGNIN_OAUTH_HELPER_H_
|
| +#define COMPONENTS_SIGNIN_CORE_BROWSER_SIGNIN_OAUTH_HELPER_H_
|
|
|
| #include <string>
|
|
|
| @@ -42,14 +42,14 @@ class SigninOAuthHelper : public GaiaAuthConsumer {
|
| private:
|
| // Overridden from GaiaAuthConsumer.
|
| virtual void OnClientOAuthSuccess(const ClientOAuthResult& result) OVERRIDE;
|
| - virtual void OnClientOAuthFailure(
|
| - const GoogleServiceAuthError& error) OVERRIDE;
|
| + virtual void OnClientOAuthFailure(const GoogleServiceAuthError& error)
|
| + OVERRIDE;
|
| virtual void OnClientLoginSuccess(const ClientLoginResult& result) OVERRIDE;
|
| - virtual void OnClientLoginFailure(
|
| - const GoogleServiceAuthError& error) OVERRIDE;
|
| + virtual void OnClientLoginFailure(const GoogleServiceAuthError& error)
|
| + OVERRIDE;
|
| virtual void OnGetUserInfoSuccess(const UserInfoMap& data) OVERRIDE;
|
| - virtual void OnGetUserInfoFailure(
|
| - const GoogleServiceAuthError& error) OVERRIDE;
|
| + virtual void OnGetUserInfoFailure(const GoogleServiceAuthError& error)
|
| + OVERRIDE;
|
|
|
| GaiaAuthFetcher gaia_auth_fetcher_;
|
| std::string refresh_token_;
|
| @@ -58,4 +58,4 @@ class SigninOAuthHelper : public GaiaAuthConsumer {
|
| DISALLOW_COPY_AND_ASSIGN(SigninOAuthHelper);
|
| };
|
|
|
| -#endif // CHROME_BROWSER_SIGNIN_SIGNIN_OAUTH_HELPER_H_
|
| +#endif // COMPONENTS_SIGNIN_CORE_BROWSER_SIGNIN_OAUTH_HELPER_H_
|
|
|