1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_MOCK_H__
#define CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_MOCK_H__
#pragma once
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/sync/profile_sync_service.h"
#include "chrome/browser/sync/profile_sync_components_factory.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace browser_sync {
class AssociatorInterface;
class ChangeProcessor;
}
class ProfileSyncComponentsFactoryMock : public ProfileSyncComponentsFactory {
public:
ProfileSyncComponentsFactoryMock();
ProfileSyncComponentsFactoryMock(
browser_sync::AssociatorInterface* model_associator,
browser_sync::ChangeProcessor* change_processor);
virtual ~ProfileSyncComponentsFactoryMock();
MOCK_METHOD0(CreateProfileSyncService,
ProfileSyncService*());
MOCK_METHOD1(RegisterDataTypes, void(ProfileSyncService*));
MOCK_METHOD2(CreateDataTypeManager,
browser_sync::DataTypeManager*(
browser_sync::SyncBackendHost*,
const browser_sync::DataTypeController::TypeMap*));
MOCK_METHOD3(CreateGenericChangeProcessor,
browser_sync::GenericChangeProcessor*(
ProfileSyncService* profile_sync_service,
browser_sync::UnrecoverableErrorHandler* error_handler,
const base::WeakPtr<SyncableService>& local_service));
MOCK_METHOD0(CreateSharedChangeProcessor,
browser_sync::SharedChangeProcessor*());
MOCK_METHOD2(CreateAppSyncComponents,
SyncComponents(ProfileSyncService* profile_sync_service,
browser_sync::UnrecoverableErrorHandler* error_handler));
MOCK_CONST_METHOD1(GetAutofillProfileSyncableService,
base::WeakPtr<SyncableService>(
WebDataService* web_data_service));
MOCK_CONST_METHOD1(GetAutocompleteSyncableService,
base::WeakPtr<SyncableService>(
WebDataService* web_data_service));
MOCK_METHOD2(CreateBookmarkSyncComponents,
SyncComponents(ProfileSyncService* profile_sync_service,
browser_sync::UnrecoverableErrorHandler* error_handler));
MOCK_METHOD2(CreateExtensionSyncComponents,
SyncComponents(ProfileSyncService* profile_sync_service,
browser_sync::UnrecoverableErrorHandler* error_handler));
MOCK_METHOD4(CreateExtensionOrAppSettingSyncComponents,
SyncComponents(syncable::ModelType model_type,
SyncableService* settings_service,
ProfileSyncService* profile_sync_service,
browser_sync::UnrecoverableErrorHandler* error_handler));
MOCK_METHOD3(CreatePasswordSyncComponents,
SyncComponents(
ProfileSyncService* profile_sync_service,
PasswordStore* password_store,
browser_sync::UnrecoverableErrorHandler* error_handler));
MOCK_METHOD2(CreatePreferenceSyncComponents,
SyncComponents(ProfileSyncService* profile_sync_service,
browser_sync::UnrecoverableErrorHandler* error_handler));
MOCK_METHOD2(CreateSessionSyncComponents,
SyncComponents(ProfileSyncService* profile_sync_service,
browser_sync::UnrecoverableErrorHandler* error_handler));
MOCK_METHOD2(CreateThemeSyncComponents,
SyncComponents(ProfileSyncService* profile_sync_service,
browser_sync::UnrecoverableErrorHandler* error_handler));
MOCK_METHOD3(CreateTypedUrlSyncComponents,
SyncComponents(
ProfileSyncService* profile_sync_service,
history::HistoryBackend* history_backend,
browser_sync::UnrecoverableErrorHandler* error_handler));
MOCK_METHOD2(CreateSearchEngineSyncComponents,
SyncComponents(
ProfileSyncService* profile_sync_service,
browser_sync::UnrecoverableErrorHandler* error_handler));
MOCK_METHOD2(CreateAppNotificationSyncComponents,
SyncComponents(
ProfileSyncService* profile_sync_service,
browser_sync::UnrecoverableErrorHandler* error_handler));
private:
SyncComponents MakeSyncComponents();
scoped_ptr<browser_sync::AssociatorInterface> model_associator_;
scoped_ptr<browser_sync::ChangeProcessor> change_processor_;
};
#endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_MOCK_H__
|