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

Unified Diff: components/autofill/core/browser/autofill_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/autofill_manager.h
diff --git a/components/autofill/core/browser/autofill_manager.h b/components/autofill/core/browser/autofill_manager.h
index 22b3983840ac5016c88b9d2e0022ed8baa7ad301..cdbb62537aaf3b61bc5f4207075634a90683144d 100644
--- a/components/autofill/core/browser/autofill_manager.h
+++ b/components/autofill/core/browser/autofill_manager.h
@@ -73,7 +73,7 @@ class AutofillManager : public AutofillDownloadManager::Observer {
AutofillClient* client,
const std::string& app_locale,
AutofillDownloadManagerState enable_download_manager);
- virtual ~AutofillManager();
+ ~AutofillManager() override;
// Sets an external delegate.
void SetExternalDelegate(AutofillExternalDelegate* delegate);
@@ -214,8 +214,7 @@ class AutofillManager : public AutofillDownloadManager::Observer {
private:
// AutofillDownloadManager::Observer:
- virtual void OnLoadedServerPredictions(
- const std::string& response_xml) override;
+ void OnLoadedServerPredictions(const std::string& response_xml) override;
// Returns false if Autofill is disabled or if no Autofill data is available.
bool RefreshDataModels() const;

Powered by Google App Engine
This is Rietveld 408576698