diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-17 21:40:38 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-17 21:40:38 +0000 |
commit | 9a68a6d01cd68fe844be2bdbb05ec415fa574b3c (patch) | |
tree | bb751e0c4144c1585d3e6ce63909b9ce10fbd6eb /chrome/browser/sync/glue/generic_change_processor.h | |
parent | 72042ea571a06d578738f231961b33b0f81e42ac (diff) | |
download | chromium_src-9a68a6d01cd68fe844be2bdbb05ec415fa574b3c.zip chromium_src-9a68a6d01cd68fe844be2bdbb05ec415fa574b3c.tar.gz chromium_src-9a68a6d01cd68fe844be2bdbb05ec415fa574b3c.tar.bz2 |
[Sync] Add Location parameter to Read/WriteTransactions
Also add to SyncChangeProcessor and SyncableService.
BUG=
TEST=
Review URL: http://codereview.chromium.org/7189004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89556 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/glue/generic_change_processor.h')
-rw-r--r-- | chrome/browser/sync/glue/generic_change_processor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/sync/glue/generic_change_processor.h b/chrome/browser/sync/glue/generic_change_processor.h index 0a7121f..d3176e5 100644 --- a/chrome/browser/sync/glue/generic_change_processor.h +++ b/chrome/browser/sync/glue/generic_change_processor.h @@ -45,7 +45,8 @@ class GenericChangeProcessor : public ChangeProcessor, virtual void CommitChangesFromSyncModel() OVERRIDE; // SyncChangeProcessor implementation. - virtual void ProcessSyncChanges(const SyncChangeList& change_list) OVERRIDE; + virtual void ProcessSyncChanges(const tracked_objects::Location& from_here, + const SyncChangeList& change_list) OVERRIDE; // Fills |current_sync_data| with all the syncer data for the specified type. virtual bool GetSyncDataForType(syncable::ModelType type, |