| 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_FAKE_ACCOUNT_FETCHER_SERVICE_H_ | 5 #ifndef COMPONENTS_SIGNIN_CORE_BROWSER_FAKE_ACCOUNT_FETCHER_SERVICE_H_ |
| 6 #define COMPONENTS_SIGNIN_CORE_BROWSER_FAKE_ACCOUNT_FETCHER_SERVICE_H_ | 6 #define COMPONENTS_SIGNIN_CORE_BROWSER_FAKE_ACCOUNT_FETCHER_SERVICE_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" |
| 8 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 9 #include "components/signin/core/browser/account_fetcher_service.h" | 10 #include "components/signin/core/browser/account_fetcher_service.h" |
| 10 | 11 |
| 11 class KeyedService; | 12 class KeyedService; |
| 12 | 13 |
| 13 namespace content { | 14 namespace content { |
| 14 class BrowserContext; | 15 class BrowserContext; |
| 15 } | 16 } |
| 16 | 17 |
| 17 // AccountTrackerService is a KeyedService that retrieves and caches GAIA | 18 // AccountTrackerService is a KeyedService that retrieves and caches GAIA |
| (...skipping 24 matching lines...) Expand all Loading... |
| 42 private: | 43 private: |
| 43 void StartFetchingUserInfo(const std::string& account_id) override; | 44 void StartFetchingUserInfo(const std::string& account_id) override; |
| 44 void StartFetchingChildInfo(const std::string& account_id) override; | 45 void StartFetchingChildInfo(const std::string& account_id) override; |
| 45 void SendRefreshTokenAnnotationRequest( | 46 void SendRefreshTokenAnnotationRequest( |
| 46 const std::string& account_id) override; | 47 const std::string& account_id) override; |
| 47 | 48 |
| 48 DISALLOW_COPY_AND_ASSIGN(FakeAccountFetcherService); | 49 DISALLOW_COPY_AND_ASSIGN(FakeAccountFetcherService); |
| 49 }; | 50 }; |
| 50 | 51 |
| 51 #endif // COMPONENTS_SIGNIN_CORE_BROWSER_FAKE_ACCOUNT_FETCHER_SERVICE_H_ | 52 #endif // COMPONENTS_SIGNIN_CORE_BROWSER_FAKE_ACCOUNT_FETCHER_SERVICE_H_ |
| OLD | NEW |