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

Unified Diff: components/autofill/core/browser/autocomplete_history_manager.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/autocomplete_history_manager.h
diff --git a/components/autofill/core/browser/autocomplete_history_manager.h b/components/autofill/core/browser/autocomplete_history_manager.h
index 5c04088e1c10389b3b6b7c161d95fdf2a892318f..254676bb8a620ddf798e9ced326a71208a4921a7 100644
--- a/components/autofill/core/browser/autocomplete_history_manager.h
+++ b/components/autofill/core/browser/autocomplete_history_manager.h
@@ -26,12 +26,11 @@ class AutocompleteHistoryManager : public WebDataServiceConsumer {
public:
AutocompleteHistoryManager(AutofillDriver* driver,
AutofillClient* autofill_client);
- virtual ~AutocompleteHistoryManager();
+ ~AutocompleteHistoryManager() override;
// WebDataServiceConsumer implementation.
- virtual void OnWebDataServiceRequestDone(
- WebDataServiceBase::Handle h,
- const WDTypedResult* result) override;
+ void OnWebDataServiceRequestDone(WebDataServiceBase::Handle h,
+ const WDTypedResult* result) override;
// Pass-through functions that are called by AutofillManager, after it has
// dispatched a message.

Powered by Google App Engine
This is Rietveld 408576698