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

Unified Diff: components/password_manager/content/browser/content_credential_manager_dispatcher.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/password_manager/content/browser/content_credential_manager_dispatcher.h
diff --git a/components/password_manager/content/browser/content_credential_manager_dispatcher.h b/components/password_manager/content/browser/content_credential_manager_dispatcher.h
index 2a8597e0659e9e3ae353ceef11e20c69199bd7be..195cbe0d7f6c84713a202f08f599a37e467df44b 100644
--- a/components/password_manager/content/browser/content_credential_manager_dispatcher.h
+++ b/components/password_manager/content/browser/content_credential_manager_dispatcher.h
@@ -35,28 +35,25 @@ class ContentCredentialManagerDispatcher : public CredentialManagerDispatcher,
// wiring this up as a subclass of PasswordStoreConsumer.
ContentCredentialManagerDispatcher(content::WebContents* web_contents,
PasswordManagerClient* client);
- virtual ~ContentCredentialManagerDispatcher();
+ ~ContentCredentialManagerDispatcher() override;
void OnProvisionalSaveComplete();
// CredentialManagerDispatcher implementation.
- virtual void OnNotifyFailedSignIn(
- int request_id,
- const password_manager::CredentialInfo&) override;
- virtual void OnNotifySignedIn(
- int request_id,
- const password_manager::CredentialInfo&) override;
- virtual void OnNotifySignedOut(int request_id) override;
- virtual void OnRequestCredential(
- int request_id,
- bool zero_click_only,
- const std::vector<GURL>& federations) override;
+ void OnNotifyFailedSignIn(int request_id,
+ const password_manager::CredentialInfo&) override;
+ void OnNotifySignedIn(int request_id,
+ const password_manager::CredentialInfo&) override;
+ void OnNotifySignedOut(int request_id) override;
+ void OnRequestCredential(int request_id,
+ bool zero_click_only,
+ const std::vector<GURL>& federations) override;
// content::WebContentsObserver implementation.
- virtual bool OnMessageReceived(const IPC::Message& message) override;
+ bool OnMessageReceived(const IPC::Message& message) override;
// PasswordStoreConsumer implementation.
- virtual void OnGetPasswordStoreResults(
+ void OnGetPasswordStoreResults(
const std::vector<autofill::PasswordForm*>& results) override;
private:

Powered by Google App Engine
This is Rietveld 408576698