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

Unified Diff: components/autofill/content/browser/wallet/wallet_client.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/content/browser/wallet/wallet_client.h
diff --git a/components/autofill/content/browser/wallet/wallet_client.h b/components/autofill/content/browser/wallet/wallet_client.h
index 1115f6d1cda5ed770d76d0e63ba2001e765f54a1..e786e99c9030d1fda593003e43ee4fe35ddc6ef9 100644
--- a/components/autofill/content/browser/wallet/wallet_client.h
+++ b/components/autofill/content/browser/wallet/wallet_client.h
@@ -142,7 +142,7 @@ class WalletClient : public net::URLFetcherDelegate {
WalletClientDelegate* delegate,
const GURL& source_url);
- virtual ~WalletClient();
+ ~WalletClient() override;
// GetWalletItems retrieves the user's online wallet. The WalletItems
// returned may require additional action such as presenting legal documents
@@ -223,7 +223,7 @@ class WalletClient : public net::URLFetcherDelegate {
void HandleWalletError(ErrorType error_type);
// net::URLFetcherDelegate:
- virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
+ void OnURLFetchComplete(const net::URLFetcher* source) override;
// Logs an UMA metric for each of the |required_actions|.
void LogRequiredActions(

Powered by Google App Engine
This is Rietveld 408576698