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

Unified Diff: components/autofill/core/browser/address.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/address.h
diff --git a/components/autofill/core/browser/address.h b/components/autofill/core/browser/address.h
index 2508847e331b01210a541c43d04a3849b11e6f69..f1d726c345072390c7e9a6c06c2dcb1dd5fa3284 100644
--- a/components/autofill/core/browser/address.h
+++ b/components/autofill/core/browser/address.h
@@ -24,23 +24,23 @@ class Address : public FormGroup {
Address& operator=(const Address& address);
// 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;
virtual void GetMatchingTypes(
const base::string16& text,
const std::string& app_locale,
- ServerFieldTypeSet* matching_types) const OVERRIDE;
+ ServerFieldTypeSet* matching_types) const override;
private:
// FormGroup:
virtual void GetSupportedTypes(
- ServerFieldTypeSet* supported_types) const OVERRIDE;
+ ServerFieldTypeSet* supported_types) const override;
// Trims any trailing newlines from |street_address_|.
void TrimStreetAddress();

Powered by Google App Engine
This is Rietveld 408576698