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

Unified Diff: components/password_manager/core/browser/stub_password_manager_driver.h

Issue 611383002: Replace OVERRIDE with its C++11 counterpart in components/password_manager/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 3 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/core/browser/stub_password_manager_driver.h
diff --git a/components/password_manager/core/browser/stub_password_manager_driver.h b/components/password_manager/core/browser/stub_password_manager_driver.h
index a6b4577663c8e915dfe8d5ac728a78e9c4f4b14f..7ad562bbbb617218b9f15829066242c533147787 100644
--- a/components/password_manager/core/browser/stub_password_manager_driver.h
+++ b/components/password_manager/core/browser/stub_password_manager_driver.h
@@ -19,22 +19,22 @@ class StubPasswordManagerDriver : public PasswordManagerDriver {
// PasswordManagerDriver:
virtual void FillPasswordForm(
- const autofill::PasswordFormFillData& form_data) OVERRIDE;
- virtual bool DidLastPageLoadEncounterSSLErrors() OVERRIDE;
- virtual bool IsOffTheRecord() OVERRIDE;
+ const autofill::PasswordFormFillData& form_data) override;
+ virtual bool DidLastPageLoadEncounterSSLErrors() override;
+ virtual bool IsOffTheRecord() override;
virtual void AllowPasswordGenerationForForm(
- const autofill::PasswordForm& form) OVERRIDE;
+ const autofill::PasswordForm& form) override;
virtual void AccountCreationFormsFound(
- const std::vector<autofill::FormData>& forms) OVERRIDE;
+ const std::vector<autofill::FormData>& forms) override;
virtual void FillSuggestion(const base::string16& username,
- const base::string16& password) OVERRIDE;
+ const base::string16& password) override;
virtual void PreviewSuggestion(const base::string16& username,
- const base::string16& password) OVERRIDE;
- virtual void ClearPreviewedForm() OVERRIDE;
- virtual PasswordGenerationManager* GetPasswordGenerationManager() OVERRIDE;
- virtual PasswordManager* GetPasswordManager() OVERRIDE;
- virtual PasswordAutofillManager* GetPasswordAutofillManager() OVERRIDE;
- virtual autofill::AutofillManager* GetAutofillManager() OVERRIDE;
+ const base::string16& password) override;
+ virtual void ClearPreviewedForm() override;
+ virtual PasswordGenerationManager* GetPasswordGenerationManager() override;
+ virtual PasswordManager* GetPasswordManager() override;
+ virtual PasswordAutofillManager* GetPasswordAutofillManager() override;
+ virtual autofill::AutofillManager* GetAutofillManager() override;
private:
DISALLOW_COPY_AND_ASSIGN(StubPasswordManagerDriver);

Powered by Google App Engine
This is Rietveld 408576698