| 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_FETCHER_SERVICE_H_ | 5 #ifndef COMPONENTS_SIGNIN_CORE_BROWSER_ACCOUNT_FETCHER_SERVICE_H_ |
| 6 #define COMPONENTS_SIGNIN_CORE_BROWSER_ACCOUNT_FETCHER_SERVICE_H_ | 6 #define COMPONENTS_SIGNIN_CORE_BROWSER_ACCOUNT_FETCHER_SERVICE_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <map> | |
| 10 | 9 |
| 11 #include "base/containers/scoped_ptr_hash_map.h" | 10 #include "base/containers/scoped_ptr_hash_map.h" |
| 12 #include "base/threading/non_thread_safe.h" | 11 #include "base/threading/non_thread_safe.h" |
| 13 #include "base/timer/timer.h" | 12 #include "base/timer/timer.h" |
| 14 #include "components/keyed_service/core/keyed_service.h" | 13 #include "components/keyed_service/core/keyed_service.h" |
| 15 #include "google_apis/gaia/oauth2_token_service.h" | 14 #include "google_apis/gaia/oauth2_token_service.h" |
| 16 | 15 |
| 17 class AccountInfoFetcher; | 16 class AccountInfoFetcher; |
| 18 class AccountTrackerService; | 17 class AccountTrackerService; |
| 19 class ChildAccountInfoFetcher; | 18 class ChildAccountInfoFetcher; |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 base::ScopedPtrHashMap<std::string, scoped_ptr<AccountInfoFetcher>> | 124 base::ScopedPtrHashMap<std::string, scoped_ptr<AccountInfoFetcher>> |
| 126 user_info_requests_; | 125 user_info_requests_; |
| 127 // Holds references to refresh token annotation requests keyed by account_id. | 126 // Holds references to refresh token annotation requests keyed by account_id. |
| 128 base::ScopedPtrHashMap<std::string, scoped_ptr<RefreshTokenAnnotationRequest>> | 127 base::ScopedPtrHashMap<std::string, scoped_ptr<RefreshTokenAnnotationRequest>> |
| 129 refresh_token_annotation_requests_; | 128 refresh_token_annotation_requests_; |
| 130 | 129 |
| 131 DISALLOW_COPY_AND_ASSIGN(AccountFetcherService); | 130 DISALLOW_COPY_AND_ASSIGN(AccountFetcherService); |
| 132 }; | 131 }; |
| 133 | 132 |
| 134 #endif // COMPONENTS_SIGNIN_CORE_BROWSER_ACCOUNT_FETCHER_SERVICE_H_ | 133 #endif // COMPONENTS_SIGNIN_CORE_BROWSER_ACCOUNT_FETCHER_SERVICE_H_ |
| OLD | NEW |