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

Unified Diff: components/sync_driver/fake_sync_client.h

Issue 1310553005: [Sync] Replace ProfileSyncComponentsFactory with SyncClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Really fix GN Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/sync_driver/fake_generic_change_processor.cc ('k') | components/sync_driver/fake_sync_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync_driver/fake_sync_client.h
diff --git a/components/sync_driver/fake_sync_client.h b/components/sync_driver/fake_sync_client.h
new file mode 100644
index 0000000000000000000000000000000000000000..6afa4fce4cd133a46fc5ef144bcd639a4b784b79
--- /dev/null
+++ b/components/sync_driver/fake_sync_client.h
@@ -0,0 +1,38 @@
+// Copyright 2015 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 COMPONENTS_SYNC_DRIVER_FAKE_SYNC_CLIENT_H_
+#define COMPONENTS_SYNC_DRIVER_FAKE_SYNC_CLIENT_H_
+
+#include "components/sync_driver/sync_client.h"
+
+namespace sync_driver {
+
+// Fake implementation of SyncClient interface for tests.
+class FakeSyncClient : public SyncClient {
+ public:
+ FakeSyncClient();
+ explicit FakeSyncClient(SyncApiComponentFactory* factory);
+ ~FakeSyncClient() override;
+
+ SyncService* GetSyncService() override;
+ PrefService* GetPrefService() override;
+ bookmarks::BookmarkModel* GetBookmarkModel() override;
+ history::HistoryService* GetHistoryService() override;
+ scoped_refptr<password_manager::PasswordStore> GetPasswordStore() override;
+ autofill::PersonalDataManager* GetPersonalDataManager() override;
+ scoped_refptr<autofill::AutofillWebDataService> GetWebDataService() override;
+ base::WeakPtr<syncer::SyncableService> GetSyncableServiceForType(
+ syncer::ModelType type) override;
+ SyncApiComponentFactory* GetSyncApiComponentFactory() override;
+
+ private:
+ SyncApiComponentFactory* factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(FakeSyncClient);
+};
+
+} // namespace sync_driver
+
+#endif // COMPONENTS_SYNC_DRIVER_FAKE_SYNC_CLIENT_H_
« no previous file with comments | « components/sync_driver/fake_generic_change_processor.cc ('k') | components/sync_driver/fake_sync_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698