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

Unified Diff: chrome/browser/sync/engine/model_changing_syncer_command.cc

Issue 8586042: Revert 110555 - sync: Remove ModelNeutralExecuteImpl() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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
Index: chrome/browser/sync/engine/model_changing_syncer_command.cc
===================================================================
--- chrome/browser/sync/engine/model_changing_syncer_command.cc (revision 110571)
+++ chrome/browser/sync/engine/model_changing_syncer_command.cc (working copy)
@@ -15,6 +15,9 @@
void ModelChangingSyncerCommand::ExecuteImpl(sessions::SyncSession* session) {
work_session_ = session;
+ if (!ModelNeutralExecuteImpl(work_session_)) {
+ return;
+ }
// Project the list of active types (i.e., types in the routing
// info) to a list of groups.
@@ -56,4 +59,9 @@
}
}
+bool ModelChangingSyncerCommand::ModelNeutralExecuteImpl(
+ sessions::SyncSession* session) {
+ return true;
+}
+
} // namespace browser_sync
« no previous file with comments | « chrome/browser/sync/engine/model_changing_syncer_command.h ('k') | chrome/browser/sync/engine/process_updates_command.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698