Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(609)

Unified Diff: components/signin/core/browser/signin_oauth_helper.h

Issue 219933002: Componentize AccountReconcilor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ChromeOS fix Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_
« no previous file with comments | « components/signin/core/browser/account_reconcilor.cc ('k') | components/signin/core/browser/signin_oauth_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698