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

Unified Diff: components/autofill/core/browser/contact_info.h

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/contact_info.h
diff --git a/components/autofill/core/browser/contact_info.h b/components/autofill/core/browser/contact_info.h
index 5231baaa941da7271f255d83f9ab160afee618c4..cfb56ec16887a5eabe0bcb871b59ef8c6d6a3333 100644
--- a/components/autofill/core/browser/contact_info.h
+++ b/components/autofill/core/browser/contact_info.h
@@ -28,19 +28,19 @@ class NameInfo : public FormGroup {
bool ParsedNamesAreEqual(const NameInfo& info);
// FormGroup:
- virtual base::string16 GetRawInfo(ServerFieldType type) 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;
private:
// FormGroup:
virtual void GetSupportedTypes(
- ServerFieldTypeSet* supported_types) const OVERRIDE;
+ ServerFieldTypeSet* supported_types) const override;
// Returns the full name, which is either |full_|, or if |full_| is empty,
// is composed of given, middle and family.
@@ -68,14 +68,14 @@ class EmailInfo : public FormGroup {
EmailInfo& operator=(const EmailInfo& info);
// FormGroup:
- virtual base::string16 GetRawInfo(ServerFieldType type) 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;
private:
// FormGroup:
virtual void GetSupportedTypes(
- ServerFieldTypeSet* supported_types) const OVERRIDE;
+ ServerFieldTypeSet* supported_types) const override;
base::string16 email_;
};
@@ -89,14 +89,14 @@ class CompanyInfo : public FormGroup {
CompanyInfo& operator=(const CompanyInfo& info);
// FormGroup:
- virtual base::string16 GetRawInfo(ServerFieldType type) 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;
private:
// FormGroup:
virtual void GetSupportedTypes(
- ServerFieldTypeSet* supported_types) const OVERRIDE;
+ ServerFieldTypeSet* supported_types) const override;
base::string16 company_name_;
};
« no previous file with comments | « components/autofill/core/browser/autofill_xml_parser.h ('k') | components/autofill/core/browser/credit_card.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698