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

Unified Diff: components/autofill/core/browser/autofill_data_model_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_data_model_unittest.cc
diff --git a/components/autofill/core/browser/autofill_data_model_unittest.cc b/components/autofill/core/browser/autofill_data_model_unittest.cc
index 8540ecf718e52f91c1a7b709d9fda70a1f426c28..dc861a7a559d2d6d18ac01ed814ebce6f663a0d7 100644
--- a/components/autofill/core/browser/autofill_data_model_unittest.cc
+++ b/components/autofill/core/browser/autofill_data_model_unittest.cc
@@ -19,13 +19,13 @@ class TestAutofillDataModel : public AutofillDataModel {
virtual ~TestAutofillDataModel() {}
private:
- virtual base::string16 GetRawInfo(ServerFieldType type) const OVERRIDE {
+ virtual base::string16 GetRawInfo(ServerFieldType type) const override {
return base::string16();
}
virtual void SetRawInfo(ServerFieldType type,
- const base::string16& value) OVERRIDE {}
+ const base::string16& value) override {}
virtual void GetSupportedTypes(
- ServerFieldTypeSet* supported_types) const OVERRIDE {}
+ ServerFieldTypeSet* supported_types) const override {}
DISALLOW_COPY_AND_ASSIGN(TestAutofillDataModel);
};

Powered by Google App Engine
This is Rietveld 408576698