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

Unified Diff: chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc

Issue 23129007: sync: Add GetAllSyncData to sync/api (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
Index: chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc
diff --git a/chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc b/chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc
index e20932d8f7258be9fd9fdf19a79d8eddc03a0ce8..41acc0c34189ee4b4d5ffa52e0d3d3c0a5612cbb 100644
--- a/chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc
+++ b/chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc
@@ -122,6 +122,10 @@ class SyncChangeProcessorDelegate : public syncer::SyncChangeProcessor {
return dictionary_->ProcessSyncChanges(from_here, change_list);
}
+ virtual syncer::SyncDataList GetAllSyncData(syncer::ModelType type) const {
+ return syncer::SyncDataList();
+ }
+
private:
SpellcheckCustomDictionary* dictionary_;
DISALLOW_COPY_AND_ASSIGN(SyncChangeProcessorDelegate);

Powered by Google App Engine
This is Rietveld 408576698