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

Unified Diff: components/autofill/core/browser/test_personal_data_manager.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/test_personal_data_manager.h
diff --git a/components/autofill/core/browser/test_personal_data_manager.h b/components/autofill/core/browser/test_personal_data_manager.h
index 2bb98380967bcf8c266211d46eb8208bb6e137e7..ede08aa3979bde87ee610741cda7242f04b06251 100644
--- a/components/autofill/core/browser/test_personal_data_manager.h
+++ b/components/autofill/core/browser/test_personal_data_manager.h
@@ -26,18 +26,18 @@ class TestPersonalDataManager : public PersonalDataManager {
// |credit_card|.
void AddTestingCreditCard(CreditCard* credit_card);
- virtual const std::vector<AutofillProfile*>& GetProfiles() const OVERRIDE;
- virtual const std::vector<AutofillProfile*>& web_profiles() const OVERRIDE;
- virtual const std::vector<CreditCard*>& GetCreditCards() const OVERRIDE;
+ virtual const std::vector<AutofillProfile*>& GetProfiles() const override;
+ virtual const std::vector<AutofillProfile*>& web_profiles() const override;
+ virtual const std::vector<CreditCard*>& GetCreditCards() const override;
virtual std::string SaveImportedProfile(
- const AutofillProfile& imported_profile) OVERRIDE;
+ const AutofillProfile& imported_profile) override;
virtual std::string SaveImportedCreditCard(
- const CreditCard& imported_credit_card) OVERRIDE;
+ const CreditCard& imported_credit_card) override;
- virtual std::string CountryCodeForCurrentTimezone() const OVERRIDE;
+ virtual std::string CountryCodeForCurrentTimezone() const override;
virtual const std::string& GetDefaultCountryCodeForNewAddress() const
- OVERRIDE;
+ override;
void set_timezone_country_code(const std::string& timezone_country_code) {
timezone_country_code_ = timezone_country_code;

Powered by Google App Engine
This is Rietveld 408576698