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

Unified Diff: components/autofill/core/browser/webdata/autofill_profile_syncable_service_unittest.cc

Issue 1056633004: Update {virtual,override} to follow C++11 style in components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix logo tracker unittest. Created 5 years, 8 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 9b9afded9391371fa9625490b8986f4f4a1a3042..4c3fe3da77d4f2311cd853a8bcd72d0b9b30ec33 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
@@ -95,13 +95,14 @@ MATCHER_P(DataBundleCheck, n_bundle, "") {
class MockSyncChangeProcessor : public syncer::SyncChangeProcessor {
public:
MockSyncChangeProcessor() {}
- virtual ~MockSyncChangeProcessor() {}
+ ~MockSyncChangeProcessor() override {}
MOCK_METHOD2(ProcessSyncChanges,
syncer::SyncError(const tracked_objects::Location&,
const syncer::SyncChangeList&));
- virtual syncer::SyncDataList GetAllSyncData(syncer::ModelType type)
- const override { return syncer::SyncDataList(); }
+ syncer::SyncDataList GetAllSyncData(syncer::ModelType type) const override {
+ return syncer::SyncDataList();
+ }
};
class TestSyncChangeProcessor : public syncer::SyncChangeProcessor {

Powered by Google App Engine
This is Rietveld 408576698