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

Unified Diff: components/sync_driver/fake_sync_client.h

Issue 2203673002: [Sync] Move //components/sync_driver to //components/sync/driver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sd-a
Patch Set: Full change rebased on static lib. Created 4 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
deleted file mode 100644
index 00a58bcf5d6260020e0e2598b64739fd33ba5dce..0000000000000000000000000000000000000000
--- a/components/sync_driver/fake_sync_client.h
+++ /dev/null
@@ -1,61 +0,0 @@
-// 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 <memory>
-
-#include "base/macros.h"
-#include "components/sync_driver/sync_client.h"
-#include "components/syncable_prefs/testing_pref_service_syncable.h"
-
-namespace sync_driver {
-class FakeSyncService;
-
-// Fake implementation of SyncClient interface for tests.
-class FakeSyncClient : public SyncClient {
- public:
- FakeSyncClient();
- explicit FakeSyncClient(SyncApiComponentFactory* factory);
- ~FakeSyncClient() override;
-
- void Initialize() override;
-
- SyncService* GetSyncService() override;
- PrefService* GetPrefService() override;
- bookmarks::BookmarkModel* GetBookmarkModel() override;
- favicon::FaviconService* GetFaviconService() override;
- history::HistoryService* GetHistoryService() override;
- base::Closure GetPasswordStateChangedCallback() override;
- sync_driver::SyncApiComponentFactory::RegisterDataTypesMethod
- GetRegisterPlatformTypesCallback() override;
- autofill::PersonalDataManager* GetPersonalDataManager() override;
- BookmarkUndoService* GetBookmarkUndoServiceIfExists() override;
- invalidation::InvalidationService* GetInvalidationService() override;
- scoped_refptr<syncer::ExtensionsActivity> GetExtensionsActivity() override;
- sync_sessions::SyncSessionsClient* GetSyncSessionsClient() override;
- base::WeakPtr<syncer::SyncableService> GetSyncableServiceForType(
- syncer::ModelType type) override;
- syncer_v2::ModelTypeService* GetModelTypeServiceForType(
- syncer::ModelType type) override;
- scoped_refptr<syncer::ModelSafeWorker> CreateModelWorkerForGroup(
- syncer::ModelSafeGroup group,
- syncer::WorkerLoopDestructionObserver* observer) override;
- SyncApiComponentFactory* GetSyncApiComponentFactory() override;
-
- void SetModelTypeService(syncer_v2::ModelTypeService* model_type_service);
-
- private:
- syncable_prefs::TestingPrefServiceSyncable pref_service_;
- syncer_v2::ModelTypeService* model_type_service_;
- SyncApiComponentFactory* factory_;
- std::unique_ptr<FakeSyncService> sync_service_;
-
- 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