| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 COMPONENTS_SIGNIN_CORE_BROWSER_ACCOUNT_INFO_FETCHER_H_ | 5 #ifndef COMPONENTS_SIGNIN_CORE_BROWSER_ACCOUNT_INFO_FETCHER_H_ |
| 6 #define COMPONENTS_SIGNIN_CORE_BROWSER_ACCOUNT_INFO_FETCHER_H_ | 6 #define COMPONENTS_SIGNIN_CORE_BROWSER_ACCOUNT_INFO_FETCHER_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" |
| 8 #include "google_apis/gaia/gaia_auth_consumer.h" | 9 #include "google_apis/gaia/gaia_auth_consumer.h" |
| 9 #include "google_apis/gaia/gaia_oauth_client.h" | 10 #include "google_apis/gaia/gaia_oauth_client.h" |
| 10 #include "google_apis/gaia/oauth2_token_service.h" | 11 #include "google_apis/gaia/oauth2_token_service.h" |
| 11 | 12 |
| 12 namespace net { | 13 namespace net { |
| 13 class URLRequestContextGetter; | 14 class URLRequestContextGetter; |
| 14 } | 15 } |
| 15 | 16 |
| 16 class AccountFetcherService; | 17 class AccountFetcherService; |
| 17 | 18 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 AccountFetcherService* service_; | 52 AccountFetcherService* service_; |
| 52 const std::string account_id_; | 53 const std::string account_id_; |
| 53 | 54 |
| 54 scoped_ptr<OAuth2TokenService::Request> login_token_request_; | 55 scoped_ptr<OAuth2TokenService::Request> login_token_request_; |
| 55 scoped_ptr<gaia::GaiaOAuthClient> gaia_oauth_client_; | 56 scoped_ptr<gaia::GaiaOAuthClient> gaia_oauth_client_; |
| 56 | 57 |
| 57 DISALLOW_COPY_AND_ASSIGN(AccountInfoFetcher); | 58 DISALLOW_COPY_AND_ASSIGN(AccountInfoFetcher); |
| 58 }; | 59 }; |
| 59 | 60 |
| 60 #endif // COMPONENTS_SIGNIN_CORE_BROWSER_ACCOUNT_INFO_FETCHER_H_ | 61 #endif // COMPONENTS_SIGNIN_CORE_BROWSER_ACCOUNT_INFO_FETCHER_H_ |
| OLD | NEW |