Index: components/dom_distiller/core/dom_distiller_store_unittest.cc |
diff --git a/components/dom_distiller/core/dom_distiller_store_unittest.cc b/components/dom_distiller/core/dom_distiller_store_unittest.cc |
index aeb11b5fa657c21987a688b949d22f75587fa299..0f22163226f4a607f39648cd51e91a47a3737f0e 100644 |
--- a/components/dom_distiller/core/dom_distiller_store_unittest.cc |
+++ b/components/dom_distiller/core/dom_distiller_store_unittest.cc |
@@ -50,7 +50,7 @@ class FakeSyncErrorFactory : public syncer::SyncErrorFactory { |
public: |
virtual syncer::SyncError CreateAndUploadError( |
const tracked_objects::Location& location, |
- const std::string& message) OVERRIDE { |
+ const std::string& message) override { |
return syncer::SyncError(); |
} |
}; |
@@ -60,14 +60,14 @@ class FakeSyncChangeProcessor : public syncer::SyncChangeProcessor { |
explicit FakeSyncChangeProcessor(EntryMap* model) : model_(model) {} |
virtual syncer::SyncDataList GetAllSyncData( |
- syncer::ModelType type) const OVERRIDE { |
+ syncer::ModelType type) const override { |
ADD_FAILURE() << "FakeSyncChangeProcessor::GetAllSyncData not implemented."; |
return syncer::SyncDataList(); |
} |
virtual SyncError ProcessSyncChanges( |
const tracked_objects::Location&, |
- const syncer::SyncChangeList& changes) OVERRIDE { |
+ const syncer::SyncChangeList& changes) override { |
for (SyncChangeList::const_iterator it = changes.begin(); |
it != changes.end(); ++it) { |
AddEntry(GetEntryFromChange(*it), model_); |