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

Unified Diff: components/autofill/core/browser/webdata/autofill_profile_syncable_service_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/autofill/core/browser/webdata/autofill_profile_syncable_service_unittest.cc
diff --git a/components/autofill/core/browser/webdata/autofill_profile_syncable_service_unittest.cc b/components/autofill/core/browser/webdata/autofill_profile_syncable_service_unittest.cc
index 3a7b9b1d270ae1ad49d7df40abe0b02df353fa0f..ab88d89750a775d0f9ef7bd0e3707d4821eec44a 100644
--- a/components/autofill/core/browser/webdata/autofill_profile_syncable_service_unittest.cc
+++ b/components/autofill/core/browser/webdata/autofill_profile_syncable_service_unittest.cc
@@ -101,7 +101,7 @@ class MockSyncChangeProcessor : public syncer::SyncChangeProcessor {
syncer::SyncError(const tracked_objects::Location&,
const syncer::SyncChangeList&));
virtual syncer::SyncDataList GetAllSyncData(syncer::ModelType type)
- const OVERRIDE { return syncer::SyncDataList(); }
+ const override { return syncer::SyncDataList(); }
};
class TestSyncChangeProcessor : public syncer::SyncChangeProcessor {
@@ -111,13 +111,13 @@ class TestSyncChangeProcessor : public syncer::SyncChangeProcessor {
virtual syncer::SyncError ProcessSyncChanges(
const tracked_objects::Location& location,
- const syncer::SyncChangeList& changes) OVERRIDE {
+ const syncer::SyncChangeList& changes) override {
changes_ = changes;
return syncer::SyncError();
}
virtual syncer::SyncDataList GetAllSyncData(syncer::ModelType type) const
- OVERRIDE {
+ override {
return syncer::SyncDataList();
}
@@ -228,7 +228,7 @@ class AutofillProfileSyncableServiceTest : public testing::Test {
public:
AutofillProfileSyncableServiceTest() {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
sync_processor_.reset(new MockSyncChangeProcessor);
}

Powered by Google App Engine
This is Rietveld 408576698