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

Unified Diff: components/autofill/core/browser/autofill_external_delegate.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/autofill_external_delegate.h
diff --git a/components/autofill/core/browser/autofill_external_delegate.h b/components/autofill/core/browser/autofill_external_delegate.h
index 36a511a5728fc2d92766fa3e34c1b8772afb0848..3a3f1bc5900ac3118228ae6e8c7cdf454a63125d 100644
--- a/components/autofill/core/browser/autofill_external_delegate.h
+++ b/components/autofill/core/browser/autofill_external_delegate.h
@@ -35,15 +35,15 @@ class AutofillExternalDelegate
virtual ~AutofillExternalDelegate();
// AutofillPopupDelegate implementation.
- virtual void OnPopupShown() OVERRIDE;
- virtual void OnPopupHidden() OVERRIDE;
+ virtual void OnPopupShown() override;
+ virtual void OnPopupHidden() override;
virtual void DidSelectSuggestion(const base::string16& value,
- int identifier) OVERRIDE;
+ int identifier) override;
virtual void DidAcceptSuggestion(const base::string16& value,
- int identifier) OVERRIDE;
+ int identifier) override;
virtual void RemoveSuggestion(const base::string16& value,
- int identifier) OVERRIDE;
- virtual void ClearPreviewedForm() OVERRIDE;
+ int identifier) override;
+ virtual void ClearPreviewedForm() override;
// Records and associates a query_id with web form data. Called
// when the renderer posts an Autofill query to the browser. |bounds|

Powered by Google App Engine
This is Rietveld 408576698