Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(656)

Side by Side Diff: components/sync/driver/sync_api_component_factory_mock.h

Issue 2388673002: Revert of [Sync] Move //components/sync to the syncer namespace. (patchset #5 id:40001 of https://co (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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 COMPONENTS_SYNC_DRIVER_SYNC_API_COMPONENT_FACTORY_MOCK_H__ 5 #ifndef COMPONENTS_SYNC_DRIVER_SYNC_API_COMPONENT_FACTORY_MOCK_H__
6 #define COMPONENTS_SYNC_DRIVER_SYNC_API_COMPONENT_FACTORY_MOCK_H__ 6 #define COMPONENTS_SYNC_DRIVER_SYNC_API_COMPONENT_FACTORY_MOCK_H__
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
11 #include "components/sync/api/data_type_error_handler.h" 11 #include "components/sync/api/data_type_error_handler.h"
12 #include "components/sync/base/model_type.h" 12 #include "components/sync/base/model_type.h"
13 #include "components/sync/driver/data_type_controller.h" 13 #include "components/sync/driver/data_type_controller.h"
14 #include "components/sync/driver/sync_api_component_factory.h" 14 #include "components/sync/driver/sync_api_component_factory.h"
15 #include "testing/gmock/include/gmock/gmock.h" 15 #include "testing/gmock/include/gmock/gmock.h"
16 16
17 namespace syncer { 17 namespace sync_driver {
18
19 class AssociatorInterface; 18 class AssociatorInterface;
20 class ChangeProcessor; 19 class ChangeProcessor;
21 class DataTypeEncryptionHandler; 20 class DataTypeEncryptionHandler;
22 class DataTypeStatusTable; 21 class DataTypeStatusTable;
23 class SyncClient; 22 class SyncClient;
23 }
24 24
25 class SyncApiComponentFactoryMock : public SyncApiComponentFactory { 25 class SyncApiComponentFactoryMock
26 : public sync_driver::SyncApiComponentFactory {
26 public: 27 public:
27 SyncApiComponentFactoryMock(); 28 SyncApiComponentFactoryMock();
28 SyncApiComponentFactoryMock(AssociatorInterface* model_associator, 29 SyncApiComponentFactoryMock(
29 ChangeProcessor* change_processor); 30 sync_driver::AssociatorInterface* model_associator,
31 sync_driver::ChangeProcessor* change_processor);
30 ~SyncApiComponentFactoryMock() override; 32 ~SyncApiComponentFactoryMock() override;
31 33
32 MOCK_METHOD2(RegisterDataTypes, 34 MOCK_METHOD2(RegisterDataTypes,
33 void(SyncService* sync_service, const RegisterDataTypesMethod&)); 35 void(sync_driver::SyncService* sync_service,
36 const RegisterDataTypesMethod&));
34 MOCK_METHOD5(CreateDataTypeManager, 37 MOCK_METHOD5(CreateDataTypeManager,
35 DataTypeManager*(const WeakHandle<DataTypeDebugInfoListener>&, 38 sync_driver::DataTypeManager*(
36 const DataTypeController::TypeMap*, 39 const syncer::WeakHandle<syncer::DataTypeDebugInfoListener>&,
37 const DataTypeEncryptionHandler*, 40 const sync_driver::DataTypeController::TypeMap*,
38 SyncBackendHost*, 41 const sync_driver::DataTypeEncryptionHandler*,
39 DataTypeManagerObserver* observer)); 42 browser_sync::SyncBackendHost*,
43 sync_driver::DataTypeManagerObserver* observer));
40 MOCK_METHOD4(CreateSyncBackendHost, 44 MOCK_METHOD4(CreateSyncBackendHost,
41 SyncBackendHost*(const std::string& name, 45 browser_sync::SyncBackendHost*(
42 invalidation::InvalidationService* invalidator, 46 const std::string& name,
43 const base::WeakPtr<SyncPrefs>& sync_prefs, 47 invalidation::InvalidationService* invalidator,
44 const base::FilePath& sync_folder)); 48 const base::WeakPtr<sync_driver::SyncPrefs>& sync_prefs,
49 const base::FilePath& sync_folder));
45 50
46 std::unique_ptr<LocalDeviceInfoProvider> CreateLocalDeviceInfoProvider() 51 std::unique_ptr<sync_driver::LocalDeviceInfoProvider>
47 override; 52 CreateLocalDeviceInfoProvider() override;
48 void SetLocalDeviceInfoProvider( 53 void SetLocalDeviceInfoProvider(
49 std::unique_ptr<LocalDeviceInfoProvider> local_device); 54 std::unique_ptr<sync_driver::LocalDeviceInfoProvider> local_device);
50 55
51 std::unique_ptr<AttachmentService> CreateAttachmentService( 56 std::unique_ptr<syncer::AttachmentService> CreateAttachmentService(
52 std::unique_ptr<AttachmentStoreForSync> attachment_store, 57 std::unique_ptr<syncer::AttachmentStoreForSync> attachment_store,
53 const UserShare& user_share, 58 const syncer::UserShare& user_share,
54 const std::string& store_birthday, 59 const std::string& store_birthday,
55 ModelType model_type, 60 syncer::ModelType model_type,
56 AttachmentService::Delegate* delegate) override; 61 syncer::AttachmentService::Delegate* delegate) override;
57 SyncComponents CreateBookmarkSyncComponents( 62 SyncComponents CreateBookmarkSyncComponents(
58 SyncService* sync_service, 63 sync_driver::SyncService* sync_service,
59 std::unique_ptr<DataTypeErrorHandler> error_handler) override; 64 std::unique_ptr<syncer::DataTypeErrorHandler> error_handler) override;
60 65
61 private: 66 private:
62 SyncApiComponentFactory::SyncComponents MakeSyncComponents(); 67 sync_driver::SyncApiComponentFactory::SyncComponents MakeSyncComponents();
63 68
64 std::unique_ptr<AssociatorInterface> model_associator_; 69 std::unique_ptr<sync_driver::AssociatorInterface> model_associator_;
65 std::unique_ptr<ChangeProcessor> change_processor_; 70 std::unique_ptr<sync_driver::ChangeProcessor> change_processor_;
66 // LocalDeviceInfoProvider is initially owned by this class, 71 // LocalDeviceInfoProvider is initially owned by this class,
67 // transferred to caller when CreateLocalDeviceInfoProvider is called. 72 // transferred to caller when CreateLocalDeviceInfoProvider is called.
68 std::unique_ptr<LocalDeviceInfoProvider> local_device_; 73 std::unique_ptr<sync_driver::LocalDeviceInfoProvider> local_device_;
69 }; 74 };
70 75
71 } // namespace syncer
72
73 #endif // COMPONENTS_SYNC_DRIVER_SYNC_API_COMPONENT_FACTORY_MOCK_H__ 76 #endif // COMPONENTS_SYNC_DRIVER_SYNC_API_COMPONENT_FACTORY_MOCK_H__
OLDNEW
« no previous file with comments | « components/sync/driver/sync_api_component_factory.h ('k') | components/sync/driver/sync_api_component_factory_mock.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698