Disable accessible touch exploration by default.
[chromium-blink-merge.git] / chrome / browser / signin / fake_account_reconcilor.h
blob49e81dc71fcb5d9cc88d88a4830af0ba4ecfda3e
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_
7 #include "components/signin/core/browser/account_reconcilor.h"
9 namespace content {
10 class BrowserContext;
13 class FakeAccountReconcilor : public AccountReconcilor {
14 public:
15 FakeAccountReconcilor(ProfileOAuth2TokenService* token_service,
16 SigninManagerBase* signin_manager,
17 SigninClient* client);
19 // Helper function to be used with KeyedService::SetTestingFactory().
20 static KeyedService* Build(content::BrowserContext* context);
22 protected:
23 // Override this method to perform no network call, instead the callback
24 // is called immediately
25 virtual void GetAccountsFromCookie(GetAccountsFromCookieCallback callback)
26 OVERRIDE;
28 DISALLOW_COPY_AND_ASSIGN(FakeAccountReconcilor);
31 #endif // CHROME_BROWSER_SIGNIN_FAKE_ACCOUNT_RECONCILOR_H_