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

Unified Diff: components/sync/api/fake_model_type_service.cc

Issue 2222373003: [Sync] Adding storage key concept for ModelTypeServices. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing redundant hash value. Created 4 years, 4 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 | « components/sync/api/fake_model_type_service.h ('k') | components/sync/api/metadata_batch.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/api/fake_model_type_service.cc
diff --git a/components/sync/api/fake_model_type_service.cc b/components/sync/api/fake_model_type_service.cc
index 82ec3d710da9054b0db4b72226a773f5840eb095..aff736289e4ec5002a24316701bc5f9c5b8132b7 100644
--- a/components/sync/api/fake_model_type_service.cc
+++ b/components/sync/api/fake_model_type_service.cc
@@ -38,7 +38,7 @@ syncer::SyncError FakeModelTypeService::ApplySyncChanges(
return syncer::SyncError();
}
-void FakeModelTypeService::GetData(ClientTagList client_tags,
+void FakeModelTypeService::GetData(StorageKeyList storage_keys,
DataCallback callback) {}
void FakeModelTypeService::GetAllData(DataCallback callback) {}
@@ -47,6 +47,10 @@ std::string FakeModelTypeService::GetClientTag(const EntityData& entity_data) {
return std::string();
}
+std::string FakeModelTypeService::GetStorageKey(const EntityData& entity_data) {
+ return std::string();
+}
+
void FakeModelTypeService::OnChangeProcessorSet() {}
bool FakeModelTypeService::HasChangeProcessor() const {
« no previous file with comments | « components/sync/api/fake_model_type_service.h ('k') | components/sync/api/metadata_batch.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698