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_SIGNIN_FAKE_ACCOUNT_TRACKER_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_SIGNIN_FAKE_ACCOUNT_TRACKER_SERVICE_H_ |
6 #define CHROME_BROWSER_SIGNIN_FAKE_ACCOUNT_TRACKER_SERVICE_H_ | 6 #define CHROME_BROWSER_SIGNIN_FAKE_ACCOUNT_TRACKER_SERVICE_H_ |
7 | 7 |
8 #include "components/signin/core/browser/account_tracker_service.h" | 8 #include "components/signin/core/browser/account_tracker_service.h" |
9 | 9 |
10 class KeyedService; | 10 class KeyedService; |
11 | 11 |
12 namespace content { | 12 namespace content { |
13 class BrowserContext; | 13 class BrowserContext; |
14 } | 14 } |
15 | 15 |
16 // AccountTrackerService is a KeyedService that retrieves and caches GAIA | 16 // AccountTrackerService is a KeyedService that retrieves and caches GAIA |
17 // information about Google Accounts. This fake class can be used in tests | 17 // information about Google Accounts. This fake class can be used in tests |
18 // to prevent AccountTrackerService from sending network requests. | 18 // to prevent AccountTrackerService from sending network requests. |
19 class FakeAccountTrackerService : public AccountTrackerService { | 19 class FakeAccountTrackerService : public AccountTrackerService { |
20 public: | 20 public: |
21 static KeyedService* Build(content::BrowserContext* context); | 21 static KeyedService* Build(content::BrowserContext* context); |
22 | 22 |
23 void FakeUserInfoFetchSuccess(const std::string& account_id, | 23 void FakeUserInfoFetchSuccess(const std::string& email, |
24 const std::string& email, | |
25 const std::string& gaia, | 24 const std::string& gaia, |
26 const std::string& hosted_domain); | 25 const std::string& hosted_domain, |
| 26 const std::string& full_name, |
| 27 const std::string& given_name, |
| 28 const std::string& locale, |
| 29 const std::string& picture_url); |
27 | 30 |
28 private: | 31 private: |
29 FakeAccountTrackerService(); | 32 FakeAccountTrackerService(); |
30 ~FakeAccountTrackerService() override; | 33 ~FakeAccountTrackerService() override; |
31 | 34 |
32 void StartFetchingUserInfo(const std::string& account_id) override; | 35 void StartFetchingUserInfo(const std::string& account_id) override; |
33 void SendRefreshTokenAnnotationRequest( | 36 void SendRefreshTokenAnnotationRequest( |
34 const std::string& account_id) override; | 37 const std::string& account_id) override; |
35 | 38 |
36 DISALLOW_COPY_AND_ASSIGN(FakeAccountTrackerService); | 39 DISALLOW_COPY_AND_ASSIGN(FakeAccountTrackerService); |
37 }; | 40 }; |
38 | 41 |
39 #endif // CHROME_BROWSER_SIGNIN_FAKE_ACCOUNT_TRACKER_SERVICE_H_ | 42 #endif // CHROME_BROWSER_SIGNIN_FAKE_ACCOUNT_TRACKER_SERVICE_H_ |
OLD | NEW |