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

Unified Diff: components/autofill/core/browser/autofill_merge_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/autofill_merge_unittest.cc
diff --git a/components/autofill/core/browser/autofill_merge_unittest.cc b/components/autofill/core/browser/autofill_merge_unittest.cc
index b801bd56265614a734d92f71dc05fcd3d9fc91ac..08fbd22353c41288b9b545f29f3ce9ff16572ff3 100644
--- a/components/autofill/core/browser/autofill_merge_unittest.cc
+++ b/components/autofill/core/browser/autofill_merge_unittest.cc
@@ -88,8 +88,8 @@ class PersonalDataManagerMock : public PersonalDataManager {
// PersonalDataManager:
virtual std::string SaveImportedProfile(
- const AutofillProfile& profile) OVERRIDE;
- virtual const std::vector<AutofillProfile*>& web_profiles() const OVERRIDE;
+ const AutofillProfile& profile) override;
+ virtual const std::vector<AutofillProfile*>& web_profiles() const override;
private:
ScopedVector<AutofillProfile> profiles_;
@@ -141,7 +141,7 @@ class AutofillMergeTest : public testing::Test,
// DataDrivenTest:
virtual void GenerateResults(const std::string& input,
- std::string* output) OVERRIDE;
+ std::string* output) override;
// Deserializes a set of Autofill profiles from |profiles|, imports each
// sequentially, and fills |merged_profiles| with the serialized result.

Powered by Google App Engine
This is Rietveld 408576698