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

Unified Diff: sync/api/model_type_service.h

Issue 1648813002: [Sync] Renaming client key to client tag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « sync/api/model_type_change_processor.h ('k') | sync/internal_api/model_type_entity.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/api/model_type_service.h
diff --git a/sync/api/model_type_service.h b/sync/api/model_type_service.h
index 48acdbeb4f130bf98025c31ca4bf9f693f6461af..e7ad8658e11ddfbef64ca4b9fa8c90bfc9910697 100644
--- a/sync/api/model_type_service.h
+++ b/sync/api/model_type_service.h
@@ -31,7 +31,7 @@ class SYNC_EXPORT ModelTypeService {
DataCallback;
typedef base::Callback<void(syncer::SyncError, scoped_ptr<MetadataBatch>)>
MetadataCallback;
- typedef std::vector<std::string> ClientKeyList;
+ typedef std::vector<std::string> ClientTagList;
ModelTypeService();
@@ -59,8 +59,8 @@ class SYNC_EXPORT ModelTypeService {
// Asynchronously retrieve the sync metadata.
virtual void LoadMetadata(MetadataCallback callback) = 0;
- // Asynchronously retrieve the corresponding sync data for |client_keys|.
- virtual void GetData(ClientKeyList client_keys, DataCallback callback) = 0;
+ // Asynchronously retrieve the corresponding sync data for |client_tags|.
+ virtual void GetData(ClientTagList client_tags, DataCallback callback) = 0;
// Asynchronously retrieve all of the local sync data.
virtual void GetAllData(DataCallback callback) = 0;
« no previous file with comments | « sync/api/model_type_change_processor.h ('k') | sync/internal_api/model_type_entity.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698