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

Unified Diff: chrome/browser/sync/glue/generic_change_processor.cc

Issue 10698141: Revert 145993 - [Sync] Add location parameter to SyncChange in Sync API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 5 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
Index: chrome/browser/sync/glue/generic_change_processor.cc
===================================================================
--- chrome/browser/sync/glue/generic_change_processor.cc (revision 145994)
+++ chrome/browser/sync/glue/generic_change_processor.cc (working copy)
@@ -49,7 +49,6 @@
if (it->action == syncer::ChangeRecord::ACTION_DELETE) {
syncer_changes_.push_back(
syncer::SyncChange(
- FROM_HERE,
syncer::SyncChange::ACTION_DELETE,
syncer::SyncData::CreateRemoteData(it->id, it->specifics)));
} else {
@@ -66,11 +65,9 @@
return;
}
syncer_changes_.push_back(
- syncer::SyncChange(
- FROM_HERE,
- action,
- syncer::SyncData::CreateRemoteData(
- it->id, read_node.GetEntitySpecifics())));
+ syncer::SyncChange(action,
+ syncer::SyncData::CreateRemoteData(
+ it->id, read_node.GetEntitySpecifics())));
}
}
}

Powered by Google App Engine
This is Rietveld 408576698