Index: chrome/browser/extensions/api/storage/settings_apitest.cc |
diff --git a/chrome/browser/extensions/api/storage/settings_apitest.cc b/chrome/browser/extensions/api/storage/settings_apitest.cc |
index 45e33865e417c58902cc95bb114f1ef4596b94e9..fd31843f1d540ef65b925e9f20e51655d53ffdcb 100644 |
--- a/chrome/browser/extensions/api/storage/settings_apitest.cc |
+++ b/chrome/browser/extensions/api/storage/settings_apitest.cc |
@@ -65,6 +65,10 @@ class NoopSyncChangeProcessor : public syncer::SyncChangeProcessor { |
return syncer::SyncError(); |
} |
+ virtual syncer::SyncDataList GetAllSyncData(syncer::ModelType type) const { |
+ return syncer::SyncDataList(); |
+ } |
+ |
virtual ~NoopSyncChangeProcessor() {}; |
}; |
@@ -83,6 +87,10 @@ class SyncChangeProcessorDelegate : public syncer::SyncChangeProcessor { |
return recipient_->ProcessSyncChanges(from_here, change_list); |
} |
+ virtual syncer::SyncDataList GetAllSyncData(syncer::ModelType type) const { |
+ return recipient_->GetAllSyncData(type); |
+ } |
+ |
private: |
// The recipient of all sync changes. |
syncer::SyncChangeProcessor* recipient_; |