diff options
author | tim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-18 17:32:27 +0000 |
---|---|---|
committer | tim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-18 17:32:27 +0000 |
commit | 85622cd0710947ec6418ee865fd9687000dd9f82 (patch) | |
tree | cb3a8cdedb5a19c36e8c8a96a5bbc755f6953e80 /sync/api/fake_sync_change_processor.cc | |
parent | 31a7fb0a3f7bec9db975db7b2526dac9624c0dc5 (diff) | |
download | chromium_src-85622cd0710947ec6418ee865fd9687000dd9f82.zip chromium_src-85622cd0710947ec6418ee865fd9687000dd9f82.tar.gz chromium_src-85622cd0710947ec6418ee865fd9687000dd9f82.tar.bz2 |
sync: make sessions sync v2 work
Summary of work:
- get tests passing with or without --enable-sync-sessions-v2 (unit_tests, browser_tests, sync_integration_tests)
- did not deal with the disabled sessions perf test. requires non-trival changes, and I'm not sure it's worthwhile yet.
- impelement StopSyncing, GetAllSyncData
- fixed a bug discovered by manual testing where the client tag for a tab node was using an invalid tab_node_id on update.
- remove most remaining references to SessionModelAssociator
- ran some manual coverage of backwards compatibility with v1
This patch does add temporary complexity to a few tests, namely WrenchMenuControllerTest and RecentTabsSubMenuModelTest. The goal was to make things work with or without the flag to minimize diffs during rollout, if we have to swap flag values. I'll remove the extra code once SessionModelAssociator is no more.
BUG=98892
Review URL: https://codereview.chromium.org/110583002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@241582 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync/api/fake_sync_change_processor.cc')
-rw-r--r-- | sync/api/fake_sync_change_processor.cc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sync/api/fake_sync_change_processor.cc b/sync/api/fake_sync_change_processor.cc new file mode 100644 index 0000000..f8d2f40 --- /dev/null +++ b/sync/api/fake_sync_change_processor.cc @@ -0,0 +1,24 @@ +// 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 "sync/api/fake_sync_change_processor.h" + +namespace syncer { + +FakeSyncChangeProcessor::FakeSyncChangeProcessor() {} + +FakeSyncChangeProcessor::~FakeSyncChangeProcessor() {} + +syncer::SyncError FakeSyncChangeProcessor::ProcessSyncChanges( + const tracked_objects::Location& from_here, + const syncer::SyncChangeList& change_list) { + return syncer::SyncError(); +} + +syncer::SyncDataList FakeSyncChangeProcessor::GetAllSyncData( + syncer::ModelType type) const { + return syncer::SyncDataList(); +} + +} // namespace syncer |