Index: chrome/browser/extensions/api/storage/settings_sync_unittest.cc |
diff --git a/chrome/browser/extensions/api/storage/settings_sync_unittest.cc b/chrome/browser/extensions/api/storage/settings_sync_unittest.cc |
index 0480062c8eda93a738745c34693791c1ee2feee2..0f48ce9080c624779e0839ac05244eda28e67c73 100644 |
--- a/chrome/browser/extensions/api/storage/settings_sync_unittest.cc |
+++ b/chrome/browser/extensions/api/storage/settings_sync_unittest.cc |
@@ -108,6 +108,11 @@ class MockSyncChangeProcessor : public syncer::SyncChangeProcessor { |
return syncer::SyncError(); |
} |
+ virtual syncer::SyncDataList GetAllSyncData(syncer::ModelType type) const |
+ OVERRIDE { |
+ return syncer::SyncDataList(); |
+ } |
+ |
// Mock methods. |
const SettingSyncDataList& changes() { return changes_; } |
@@ -166,6 +171,11 @@ class SyncChangeProcessorDelegate : public syncer::SyncChangeProcessor { |
return recipient_->ProcessSyncChanges(from_here, change_list); |
} |
+ virtual syncer::SyncDataList GetAllSyncData(syncer::ModelType type) const |
+ OVERRIDE { |
+ return recipient_->GetAllSyncData(type); |
+ } |
+ |
private: |
// The recipient of all sync changes. |
syncer::SyncChangeProcessor* recipient_; |