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()))); |
} |
} |
} |