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

Unified Diff: components/dom_distiller/core/dom_distiller_store_unittest.cc

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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: 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_);
« no previous file with comments | « components/dom_distiller/core/dom_distiller_store.h ('k') | components/dom_distiller/core/dom_distiller_test_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698