| 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 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 void OnAddAccountToCookieCompleted( | 56 void OnAddAccountToCookieCompleted( |
| 57 const std::string& account_id, | 57 const std::string& account_id, |
| 58 const GoogleServiceAuthError& error) override; | 58 const GoogleServiceAuthError& error) override; |
| 59 void OnGaiaAccountsInCookieUpdated( | 59 void OnGaiaAccountsInCookieUpdated( |
| 60 const std::vector<gaia::ListedAccount>& accounts, | 60 const std::vector<gaia::ListedAccount>& accounts, |
| 61 const std::vector<gaia::ListedAccount>& signed_out_accounts, | 61 const std::vector<gaia::ListedAccount>& signed_out_accounts, |
| 62 const GoogleServiceAuthError& error) override; | 62 const GoogleServiceAuthError& error) override; |
| 63 | 63 |
| 64 OAuth2LoginVerifier::Delegate* delegate_; | 64 OAuth2LoginVerifier::Delegate* delegate_; |
| 65 GaiaCookieManagerService* cookie_manager_service_; | 65 GaiaCookieManagerService* cookie_manager_service_; |
| 66 const std::string& primary_account_id_; | 66 const std::string primary_account_id_; |
| 67 const std::string access_token_; | 67 const std::string access_token_; |
| 68 | 68 |
| 69 DISALLOW_COPY_AND_ASSIGN(OAuth2LoginVerifier); | 69 DISALLOW_COPY_AND_ASSIGN(OAuth2LoginVerifier); |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 } // namespace chromeos | 72 } // namespace chromeos |
| 73 | 73 |
| 74 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_LOGIN_VERIFIER_H_ | 74 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_LOGIN_VERIFIER_H_ |
| OLD | NEW |