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

Unified Diff: chrome/browser/sync/glue/fake_generic_change_processor.h

Issue 23129007: sync: Add GetAllSyncData to sync/api (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review comments Created 7 years, 3 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/fake_generic_change_processor.h
diff --git a/chrome/browser/sync/glue/fake_generic_change_processor.h b/chrome/browser/sync/glue/fake_generic_change_processor.h
index 36285b94c4295724d70b653d2bb19f29bdeb6068..bf493dc80f4ca172485358e148508b7c5462b2ca 100644
--- a/chrome/browser/sync/glue/fake_generic_change_processor.h
+++ b/chrome/browser/sync/glue/fake_generic_change_processor.h
@@ -28,9 +28,9 @@ class FakeGenericChangeProcessor : public GenericChangeProcessor {
virtual syncer::SyncError ProcessSyncChanges(
const tracked_objects::Location& from_here,
const syncer::SyncChangeList& change_list) OVERRIDE;
- virtual syncer::SyncError GetSyncDataForType(
+ virtual syncer::SyncError GetAllSyncDataReturnError(
syncer::ModelType type,
- syncer::SyncDataList* current_sync_data) OVERRIDE;
+ syncer::SyncDataList* data) const OVERRIDE;
virtual int GetSyncCountForType(syncer::ModelType type) OVERRIDE;
virtual bool SyncModelHasUserCreatedNodes(syncer::ModelType type,
bool* has_nodes) OVERRIDE;
@@ -42,7 +42,6 @@ class FakeGenericChangeProcessor : public GenericChangeProcessor {
bool sync_model_has_user_created_nodes_;
bool sync_model_has_user_created_nodes_success_;
bool crypto_ready_if_necessary_;
- syncer::ModelType type_;
};
} // namespace browser_sync

Powered by Google App Engine
This is Rietveld 408576698