| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_LOGIN_VERIFIER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_LOGIN_VERIFIER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_LOGIN_VERIFIER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_LOGIN_VERIFIER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 // tokens along the way (OAuth2 access token, SID/LSID, GAIA service token). | 59 // tokens along the way (OAuth2 access token, SID/LSID, GAIA service token). |
| 60 void VerifyProfileTokens(Profile* profile); | 60 void VerifyProfileTokens(Profile* profile); |
| 61 | 61 |
| 62 private: | 62 private: |
| 63 enum SessionRestoreType { | 63 enum SessionRestoreType { |
| 64 RESTORE_UNDEFINED = 0, | 64 RESTORE_UNDEFINED = 0, |
| 65 RESTORE_FROM_GAIA_TOKEN = 1, | 65 RESTORE_FROM_GAIA_TOKEN = 1, |
| 66 RESTORE_FROM_OAUTH2_REFRESH_TOKEN = 2, | 66 RESTORE_FROM_OAUTH2_REFRESH_TOKEN = 2, |
| 67 }; | 67 }; |
| 68 // GaiaAuthConsumer overrides. | 68 // GaiaAuthConsumer overrides. |
| 69 virtual void OnUberAuthTokenSuccess(const std::string& token) OVERRIDE; | 69 virtual void OnUberAuthTokenSuccess(const std::string& token) override; |
| 70 virtual void OnUberAuthTokenFailure( | 70 virtual void OnUberAuthTokenFailure( |
| 71 const GoogleServiceAuthError& error) OVERRIDE; | 71 const GoogleServiceAuthError& error) override; |
| 72 virtual void OnMergeSessionSuccess(const std::string& data) OVERRIDE; | 72 virtual void OnMergeSessionSuccess(const std::string& data) override; |
| 73 virtual void OnMergeSessionFailure( | 73 virtual void OnMergeSessionFailure( |
| 74 const GoogleServiceAuthError& error) OVERRIDE; | 74 const GoogleServiceAuthError& error) override; |
| 75 virtual void OnListAccountsSuccess(const std::string& data) OVERRIDE; | 75 virtual void OnListAccountsSuccess(const std::string& data) override; |
| 76 virtual void OnListAccountsFailure( | 76 virtual void OnListAccountsFailure( |
| 77 const GoogleServiceAuthError& error) OVERRIDE; | 77 const GoogleServiceAuthError& error) override; |
| 78 | 78 |
| 79 // OAuth2TokenService::Consumer overrides. | 79 // OAuth2TokenService::Consumer overrides. |
| 80 virtual void OnGetTokenSuccess(const OAuth2TokenService::Request* request, | 80 virtual void OnGetTokenSuccess(const OAuth2TokenService::Request* request, |
| 81 const std::string& access_token, | 81 const std::string& access_token, |
| 82 const base::Time& expiration_time) OVERRIDE; | 82 const base::Time& expiration_time) override; |
| 83 virtual void OnGetTokenFailure(const OAuth2TokenService::Request* request, | 83 virtual void OnGetTokenFailure(const OAuth2TokenService::Request* request, |
| 84 const GoogleServiceAuthError& error) OVERRIDE; | 84 const GoogleServiceAuthError& error) override; |
| 85 | 85 |
| 86 // Starts fetching OAuth1 access token for OAuthLogin call. | 86 // Starts fetching OAuth1 access token for OAuthLogin call. |
| 87 void StartFetchingOAuthLoginAccessToken(Profile* profile); | 87 void StartFetchingOAuthLoginAccessToken(Profile* profile); |
| 88 | 88 |
| 89 // Starts OAuthLogin request for GAIA uber-token. | 89 // Starts OAuthLogin request for GAIA uber-token. |
| 90 void StartOAuthLoginForUberToken(); | 90 void StartOAuthLoginForUberToken(); |
| 91 | 91 |
| 92 // Attempts to merge session from present |gaia_token_|. | 92 // Attempts to merge session from present |gaia_token_|. |
| 93 void StartMergeSession(); | 93 void StartMergeSession(); |
| 94 | 94 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 118 scoped_ptr<OAuth2TokenService::Request> login_token_request_; | 118 scoped_ptr<OAuth2TokenService::Request> login_token_request_; |
| 119 // The retry counter. Increment this only when failure happened. | 119 // The retry counter. Increment this only when failure happened. |
| 120 int retry_count_; | 120 int retry_count_; |
| 121 | 121 |
| 122 DISALLOW_COPY_AND_ASSIGN(OAuth2LoginVerifier); | 122 DISALLOW_COPY_AND_ASSIGN(OAuth2LoginVerifier); |
| 123 }; | 123 }; |
| 124 | 124 |
| 125 } // namespace chromeos | 125 } // namespace chromeos |
| 126 | 126 |
| 127 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_LOGIN_VERIFIER_H_ | 127 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_LOGIN_VERIFIER_H_ |
| OLD | NEW |