OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 #ifndef CHROME_BROWSER_SIGNIN_FAKE_ACCOUNT_RECONCILOR_H_ | |
5 #define CHROME_BROWSER_SIGNIN_FAKE_ACCOUNT_RECONCILOR_H_ | |
6 | |
7 #include "components/signin/core/browser/account_reconcilor.h" | |
8 | |
9 namespace content { | |
10 class BrowserContext; | |
11 } | |
12 | |
13 class FakeAccountReconcilor : public AccountReconcilor { | |
14 public: | |
15 FakeAccountReconcilor(ProfileOAuth2TokenService* token_service, | |
16 SigninManagerBase* signin_manager, | |
17 SigninClient* client, | |
18 GaiaCookieManagerService* cookie_manager_service); | |
19 | |
20 // Helper function to be used with KeyedService::SetTestingFactory(). | |
21 static KeyedService* Build(content::BrowserContext* context); | |
22 | |
23 protected: | |
24 // Override this method to perform no network call, instead the callback | |
25 // is called immediately | |
26 void GetAccountsFromCookie(GetAccountsFromCookieCallback callback) override; | |
27 | |
28 DISALLOW_COPY_AND_ASSIGN(FakeAccountReconcilor); | |
29 }; | |
30 | |
31 #endif // CHROME_BROWSER_SIGNIN_FAKE_ACCOUNT_RECONCILOR_H_ | |
OLD | NEW |