BookmarkManager: Fix 'new folder text field size changes on clicking it' issue.
[chromium-blink-merge.git] / chrome / browser / sync / profile_sync_service_mock.cc
blob83a4b707948a2a156542e74d7f64a955fc01e08b
1 // Copyright (c) 2012 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.
5 #include "chrome/browser/sync/profile_sync_service_mock.h"
7 #include "base/prefs/pref_service.h"
8 #include "base/prefs/testing_pref_store.h"
9 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h"
10 #include "chrome/browser/signin/signin_manager_factory.h"
11 #include "chrome/browser/sync/profile_sync_components_factory_mock.h"
12 #include "chrome/common/pref_names.h"
13 #include "chrome/common/url_constants.h"
14 #include "chrome/test/base/testing_profile.h"
15 #include "components/signin/core/browser/profile_oauth2_token_service.h"
16 #include "components/signin/core/browser/signin_manager.h"
17 #include "components/sync_driver/signin_manager_wrapper.h"
19 ProfileSyncServiceMock::ProfileSyncServiceMock(Profile* profile)
20 : ProfileSyncServiceMock(
21 scoped_ptr<sync_driver::SyncApiComponentFactory>(
22 new ProfileSyncComponentsFactoryMock()),
23 profile) {
26 ProfileSyncServiceMock::ProfileSyncServiceMock(
27 scoped_ptr<sync_driver::SyncApiComponentFactory> factory, Profile* profile)
28 : ProfileSyncService(
29 factory.Pass(),
30 profile,
31 make_scoped_ptr(new SigninManagerWrapper(
32 SigninManagerFactory::GetForProfile(profile))),
33 ProfileOAuth2TokenServiceFactory::GetForProfile(profile),
34 browser_sync::MANUAL_START) {
35 ON_CALL(*this, IsSyncRequested()).WillByDefault(testing::Return(true));
38 ProfileSyncServiceMock::~ProfileSyncServiceMock() {
41 // static
42 TestingProfile* ProfileSyncServiceMock::MakeSignedInTestingProfile() {
43 TestingProfile* profile = new TestingProfile();
44 SigninManagerFactory::GetForProfile(profile)->
45 SetAuthenticatedAccountInfo("12345", "foo");
46 return profile;
49 // static
50 scoped_ptr<KeyedService> ProfileSyncServiceMock::BuildMockProfileSyncService(
51 content::BrowserContext* profile) {
52 return make_scoped_ptr(
53 new ProfileSyncServiceMock(static_cast<Profile*>(profile)));