Index: components/autofill/core/browser/credit_card.h |
diff --git a/components/autofill/core/browser/credit_card.h b/components/autofill/core/browser/credit_card.h |
index 3c4c1f65c314442636df8ee31834ad0a763bd2bd..585b4313ed6c06d2dbe0b3aa2573f3f6d6395804 100644 |
--- a/components/autofill/core/browser/credit_card.h |
+++ b/components/autofill/core/browser/credit_card.h |
@@ -49,15 +49,15 @@ class CreditCard : public AutofillDataModel { |
virtual void GetMatchingTypes( |
const base::string16& text, |
const std::string& app_locale, |
- ServerFieldTypeSet* matching_types) const OVERRIDE; |
- virtual base::string16 GetRawInfo(ServerFieldType type) const OVERRIDE; |
+ ServerFieldTypeSet* matching_types) const override; |
+ virtual base::string16 GetRawInfo(ServerFieldType type) const override; |
virtual void SetRawInfo(ServerFieldType type, |
- const base::string16& value) OVERRIDE; |
+ const base::string16& value) override; |
virtual base::string16 GetInfo(const AutofillType& type, |
- const std::string& app_locale) const OVERRIDE; |
+ const std::string& app_locale) const override; |
virtual bool SetInfo(const AutofillType& type, |
const base::string16& value, |
- const std::string& app_locale) OVERRIDE; |
+ const std::string& app_locale) override; |
// Credit card preview summary, for example: ******1234, Exp: 01/2020 |
const base::string16 Label() const; |
@@ -117,7 +117,7 @@ class CreditCard : public AutofillDataModel { |
private: |
// FormGroup: |
virtual void GetSupportedTypes( |
- ServerFieldTypeSet* supported_types) const OVERRIDE; |
+ ServerFieldTypeSet* supported_types) const override; |
// The month and year are zero if not present. |
int Expiration4DigitYear() const { return expiration_year_; } |