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

Unified Diff: components/sync/api/fake_sync_change_processor.cc

Issue 2401223002: [Sync] Renaming sync/api* to sync/model*. (Closed)
Patch Set: Missed a comment in a DEPS file, and rebasing. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/sync/api/fake_sync_change_processor.h ('k') | components/sync/api/fake_syncable_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/api/fake_sync_change_processor.cc
diff --git a/components/sync/api/fake_sync_change_processor.cc b/components/sync/api/fake_sync_change_processor.cc
deleted file mode 100644
index 2487849a40490a87bab5cac6284c331519fb860f..0000000000000000000000000000000000000000
--- a/components/sync/api/fake_sync_change_processor.cc
+++ /dev/null
@@ -1,65 +0,0 @@
-// Copyright 2013 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.
-
-#include "components/sync/api/fake_sync_change_processor.h"
-
-#include "components/sync/api/sync_change.h"
-#include "components/sync/api/sync_data.h"
-
-namespace syncer {
-
-FakeSyncChangeProcessor::FakeSyncChangeProcessor() {}
-
-FakeSyncChangeProcessor::~FakeSyncChangeProcessor() {}
-
-SyncError FakeSyncChangeProcessor::ProcessSyncChanges(
- const tracked_objects::Location& from_here,
- const SyncChangeList& change_list) {
- changes_.insert(changes_.end(), change_list.begin(), change_list.end());
- return SyncError();
-}
-
-SyncDataList FakeSyncChangeProcessor::GetAllSyncData(ModelType type) const {
- return data_;
-}
-
-SyncError FakeSyncChangeProcessor::UpdateDataTypeContext(
- ModelType type,
- ContextRefreshStatus refresh_status,
- const std::string& context) {
- context_ = context;
- return SyncError();
-}
-
-void FakeSyncChangeProcessor::AddLocalChangeObserver(
- LocalChangeObserver* observer) {}
-
-void FakeSyncChangeProcessor::RemoveLocalChangeObserver(
- LocalChangeObserver* observer) {}
-
-const SyncChangeList& FakeSyncChangeProcessor::changes() const {
- return changes_;
-}
-
-SyncChangeList& FakeSyncChangeProcessor::changes() {
- return changes_;
-}
-
-const SyncDataList& FakeSyncChangeProcessor::data() const {
- return data_;
-}
-
-SyncDataList& FakeSyncChangeProcessor::data() {
- return data_;
-}
-
-const std::string& FakeSyncChangeProcessor::context() const {
- return context_;
-}
-
-std::string& FakeSyncChangeProcessor::context() {
- return context_;
-}
-
-} // namespace syncer
« no previous file with comments | « components/sync/api/fake_sync_change_processor.h ('k') | components/sync/api/fake_syncable_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698