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

Unified Diff: components/autofill/core/browser/autofill_download_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_download_manager.h
diff --git a/components/autofill/core/browser/autofill_download_manager.h b/components/autofill/core/browser/autofill_download_manager.h
index 2963e413f92a9a6e717b9eb132cee1394f81fd3e..4f0e2a33227fd0e4c0e3de545b16c6015b86c903 100644
--- a/components/autofill/core/browser/autofill_download_manager.h
+++ b/components/autofill/core/browser/autofill_download_manager.h
@@ -63,7 +63,7 @@ class AutofillDownloadManager : public net::URLFetcherDelegate {
AutofillDownloadManager(AutofillDriver* driver,
PrefService* pref_service,
Observer* observer);
- virtual ~AutofillDownloadManager();
+ ~AutofillDownloadManager() override;
// Starts a query request to Autofill servers. The observer is called with the
// list of the fields of all requested forms.
@@ -118,7 +118,7 @@ class AutofillDownloadManager : public net::URLFetcherDelegate {
const std::vector<std::string>& forms_in_query) const;
// net::URLFetcherDelegate implementation:
- virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
+ void OnURLFetchComplete(const net::URLFetcher* source) override;
// Probability of the form upload. Between 0 (no upload) and 1 (upload all).
// GetPositiveUploadRate() is for matched forms,

Powered by Google App Engine
This is Rietveld 408576698