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

Unified Diff: components/autofill/core/browser/autofill_external_delegate.h

Issue 666133002: Standardize usage of virtual/override/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 81435fe56ca5c444bb2f82f24bbef88a57aa3600..971af235dee3cdfaed86187fc47187865c959ca8 100644
--- a/components/autofill/core/browser/autofill_external_delegate.h
+++ b/components/autofill/core/browser/autofill_external_delegate.h
@@ -35,15 +35,14 @@ class AutofillExternalDelegate
virtual ~AutofillExternalDelegate();
// AutofillPopupDelegate implementation.
- virtual void OnPopupShown() override;
- virtual void OnPopupHidden() override;
- virtual void DidSelectSuggestion(const base::string16& value,
- int identifier) override;
- virtual void DidAcceptSuggestion(const base::string16& value,
- int identifier) override;
- virtual void RemoveSuggestion(const base::string16& value,
- int identifier) override;
- virtual void ClearPreviewedForm() override;
+ void OnPopupShown() override;
+ void OnPopupHidden() override;
+ void DidSelectSuggestion(const base::string16& value,
+ int identifier) override;
+ void DidAcceptSuggestion(const base::string16& value,
+ int identifier) override;
+ void RemoveSuggestion(const base::string16& value, int identifier) override;
+ 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