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

Unified Diff: components/password_manager/content/browser/content_password_manager_driver.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_password_manager_driver.h
diff --git a/components/password_manager/content/browser/content_password_manager_driver.h b/components/password_manager/content/browser/content_password_manager_driver.h
index 264f81462c63e55881c4b1d0b7ad4e8def0ee889..c6b64f6fb5bba37d27c80c2c46b9b17bf33ff4a1 100644
--- a/components/password_manager/content/browser/content_password_manager_driver.h
+++ b/components/password_manager/content/browser/content_password_manager_driver.h
@@ -30,31 +30,31 @@ class ContentPasswordManagerDriver : public PasswordManagerDriver,
ContentPasswordManagerDriver(content::WebContents* web_contents,
PasswordManagerClient* client,
autofill::AutofillClient* autofill_client);
- virtual ~ContentPasswordManagerDriver();
+ ~ContentPasswordManagerDriver() override;
// PasswordManagerDriver implementation.
- virtual void FillPasswordForm(const autofill::PasswordFormFillData& form_data)
- override;
- virtual bool DidLastPageLoadEncounterSSLErrors() override;
- virtual bool IsOffTheRecord() override;
- virtual void AllowPasswordGenerationForForm(
+ void FillPasswordForm(
+ const autofill::PasswordFormFillData& form_data) override;
+ bool DidLastPageLoadEncounterSSLErrors() override;
+ bool IsOffTheRecord() override;
+ void AllowPasswordGenerationForForm(
const autofill::PasswordForm& form) override;
- virtual void AccountCreationFormsFound(
+ void AccountCreationFormsFound(
const std::vector<autofill::FormData>& forms) override;
- virtual void FillSuggestion(const base::string16& username,
- const base::string16& password) override;
- virtual void PreviewSuggestion(const base::string16& username,
- const base::string16& password) override;
- virtual void ClearPreviewedForm() override;
+ void FillSuggestion(const base::string16& username,
+ const base::string16& password) override;
+ void PreviewSuggestion(const base::string16& username,
+ const base::string16& password) override;
+ void ClearPreviewedForm() override;
- virtual PasswordGenerationManager* GetPasswordGenerationManager() override;
- virtual PasswordManager* GetPasswordManager() override;
- virtual autofill::AutofillManager* GetAutofillManager() override;
- virtual PasswordAutofillManager* GetPasswordAutofillManager() override;
+ PasswordGenerationManager* GetPasswordGenerationManager() override;
+ PasswordManager* GetPasswordManager() override;
+ autofill::AutofillManager* GetAutofillManager() override;
+ PasswordAutofillManager* GetPasswordAutofillManager() override;
// content::WebContentsObserver overrides.
- virtual bool OnMessageReceived(const IPC::Message& message) override;
- virtual void DidNavigateMainFrame(
+ bool OnMessageReceived(const IPC::Message& message) override;
+ void DidNavigateMainFrame(
const content::LoadCommittedDetails& details,
const content::FrameNavigateParams& params) override;

Powered by Google App Engine
This is Rietveld 408576698