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

Unified Diff: components/autofill/core/browser/phone_number.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/phone_number.h
diff --git a/components/autofill/core/browser/phone_number.h b/components/autofill/core/browser/phone_number.h
index 19f9f091da4a07f1b70910fa87f549093e8177cf..17a0a248aa1430a6a08ececc1d8d2c3c51550a08 100644
--- a/components/autofill/core/browser/phone_number.h
+++ b/components/autofill/core/browser/phone_number.h
@@ -32,15 +32,15 @@ class PhoneNumber : public FormGroup {
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;
// Size and offset of the prefix and suffix portions of phone numbers.
static const size_t kPrefixOffset = 0;
@@ -79,7 +79,7 @@ class PhoneNumber : public FormGroup {
private:
// FormGroup:
virtual void GetSupportedTypes(
- ServerFieldTypeSet* supported_types) const OVERRIDE;
+ ServerFieldTypeSet* supported_types) const override;
// Updates the cached parsed number if the profile's region has changed
// since the last time the cache was updated.
« no previous file with comments | « components/autofill/core/browser/phone_field.h ('k') | components/autofill/core/browser/test_autofill_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698