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

Unified Diff: chrome/browser/ui/autofill/chrome_autofill_client.h

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (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: chrome/browser/ui/autofill/chrome_autofill_client.h
diff --git a/chrome/browser/ui/autofill/chrome_autofill_client.h b/chrome/browser/ui/autofill/chrome_autofill_client.h
index ac5fa76ce0f6ec8a86e2979e652e2f4cfff27620..a337dc5d914968b4d43e6ab99517a28a26d2dd70 100644
--- a/chrome/browser/ui/autofill/chrome_autofill_client.h
+++ b/chrome/browser/ui/autofill/chrome_autofill_client.h
@@ -40,18 +40,18 @@ class ChromeAutofillClient
void TabActivated();
// AutofillClient:
- virtual PersonalDataManager* GetPersonalDataManager() OVERRIDE;
- virtual scoped_refptr<AutofillWebDataService> GetDatabase() OVERRIDE;
- virtual PrefService* GetPrefs() OVERRIDE;
- virtual void HideRequestAutocompleteDialog() OVERRIDE;
- virtual void ShowAutofillSettings() OVERRIDE;
+ virtual PersonalDataManager* GetPersonalDataManager() override;
+ virtual scoped_refptr<AutofillWebDataService> GetDatabase() override;
+ virtual PrefService* GetPrefs() override;
+ virtual void HideRequestAutocompleteDialog() override;
+ virtual void ShowAutofillSettings() override;
virtual void ConfirmSaveCreditCard(
const AutofillMetrics& metric_logger,
- const base::Closure& save_card_callback) OVERRIDE;
+ const base::Closure& save_card_callback) override;
virtual void ShowRequestAutocompleteDialog(
const FormData& form,
const GURL& source_url,
- const ResultCallback& callback) OVERRIDE;
+ const ResultCallback& callback) override;
virtual void ShowAutofillPopup(
const gfx::RectF& element_bounds,
base::i18n::TextDirection text_direction,
@@ -59,24 +59,24 @@ class ChromeAutofillClient
const std::vector<base::string16>& labels,
const std::vector<base::string16>& icons,
const std::vector<int>& identifiers,
- base::WeakPtr<AutofillPopupDelegate> delegate) OVERRIDE;
+ base::WeakPtr<AutofillPopupDelegate> delegate) override;
virtual void UpdateAutofillPopupDataListValues(
const std::vector<base::string16>& values,
- const std::vector<base::string16>& labels) OVERRIDE;
- virtual void HideAutofillPopup() OVERRIDE;
- virtual bool IsAutocompleteEnabled() OVERRIDE;
+ const std::vector<base::string16>& labels) override;
+ virtual void HideAutofillPopup() override;
+ virtual bool IsAutocompleteEnabled() override;
virtual void DetectAccountCreationForms(
- const std::vector<autofill::FormStructure*>& forms) OVERRIDE;
+ const std::vector<autofill::FormStructure*>& forms) override;
virtual void DidFillOrPreviewField(
const base::string16& autofilled_value,
- const base::string16& profile_full_name) OVERRIDE;
+ const base::string16& profile_full_name) override;
// content::WebContentsObserver implementation.
- virtual void WebContentsDestroyed() OVERRIDE;
+ virtual void WebContentsDestroyed() override;
// ZoomObserver implementation.
virtual void OnZoomChanged(
- const ZoomController::ZoomChangedEventData& data) OVERRIDE;
+ const ZoomController::ZoomChangedEventData& data) override;
// Exposed for testing.
AutofillDialogController* GetDialogControllerForTesting() {
« no previous file with comments | « chrome/browser/ui/autofill/autofill_popup_controller_unittest.cc ('k') | chrome/browser/ui/autofill/country_combobox_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698