Index: chrome/browser/notifications/sync_notifier/chrome_notifier_service_unittest.cc |
diff --git a/chrome/browser/notifications/sync_notifier/chrome_notifier_service_unittest.cc b/chrome/browser/notifications/sync_notifier/chrome_notifier_service_unittest.cc |
index 67d70558a89724b932b31edbb1349743678fc94c..d5c4b14df1b2d04227a76bdfa04dc22d685464dd 100644 |
--- a/chrome/browser/notifications/sync_notifier/chrome_notifier_service_unittest.cc |
+++ b/chrome/browser/notifications/sync_notifier/chrome_notifier_service_unittest.cc |
@@ -154,6 +154,11 @@ class TestChangeProcessor : public syncer::SyncChangeProcessor { |
return syncer::SyncError(); |
} |
+ virtual syncer::SyncDataList GetAllSyncData(syncer::ModelType type) const |
+ OVERRIDE { |
+ return syncer::SyncDataList(); |
+ } |
+ |
size_t change_list_size() { return change_map_.size(); } |
bool ContainsId(const std::string& id) { |
@@ -187,6 +192,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. |
SyncChangeProcessor* recipient_; |