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

Unified Diff: components/password_manager/core/browser/stub_password_manager_client.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_client.h
diff --git a/components/password_manager/core/browser/stub_password_manager_client.h b/components/password_manager/core/browser/stub_password_manager_client.h
index 15d10bf1d58a91494e317169a43d40761d9168f2..4eb037b1edecb608bc37cdf84158d8c87219fd4e 100644
--- a/components/password_manager/core/browser/stub_password_manager_client.h
+++ b/components/password_manager/core/browser/stub_password_manager_client.h
@@ -19,18 +19,18 @@ class StubPasswordManagerClient : public PasswordManagerClient {
// PasswordManagerClient:
virtual bool IsSyncAccountCredential(
- const std::string& username, const std::string& origin) const OVERRIDE;
+ const std::string& username, const std::string& origin) const override;
virtual bool ShouldFilterAutofillResult(
- const autofill::PasswordForm& form) OVERRIDE;
+ const autofill::PasswordForm& form) override;
virtual bool PromptUserToSavePassword(
- scoped_ptr<PasswordFormManager> form_to_save) OVERRIDE;
+ scoped_ptr<PasswordFormManager> form_to_save) override;
virtual void AutomaticPasswordSave(
- scoped_ptr<PasswordFormManager> saved_manager) OVERRIDE;
+ scoped_ptr<PasswordFormManager> saved_manager) override;
virtual void AuthenticateAutofillAndFillForm(
- scoped_ptr<autofill::PasswordFormFillData> fill_data) OVERRIDE;
- virtual PrefService* GetPrefs() OVERRIDE;
- virtual PasswordStore* GetPasswordStore() OVERRIDE;
- virtual PasswordManagerDriver* GetDriver() OVERRIDE;
+ scoped_ptr<autofill::PasswordFormFillData> fill_data) override;
+ virtual PrefService* GetPrefs() override;
+ virtual PasswordStore* GetPasswordStore() override;
+ virtual PasswordManagerDriver* GetDriver() override;
private:
DISALLOW_COPY_AND_ASSIGN(StubPasswordManagerClient);

Powered by Google App Engine
This is Rietveld 408576698