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

Unified Diff: chrome/browser/password_manager/chrome_password_manager_client.h

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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: chrome/browser/password_manager/chrome_password_manager_client.h
diff --git a/chrome/browser/password_manager/chrome_password_manager_client.h b/chrome/browser/password_manager/chrome_password_manager_client.h
index 9ce89a8a8e568911bf7bc8ef0dc1e48364be63cf..61f264412f3532532d227e2b2bc769e3214af04c 100644
--- a/chrome/browser/password_manager/chrome_password_manager_client.h
+++ b/chrome/browser/password_manager/chrome_password_manager_client.h
@@ -40,33 +40,33 @@ class ChromePasswordManagerClient
virtual ~ChromePasswordManagerClient();
// PasswordManagerClient implementation.
- virtual bool IsAutomaticPasswordSavingEnabled() const OVERRIDE;
- virtual bool IsPasswordManagerEnabledForCurrentPage() const OVERRIDE;
+ virtual bool IsAutomaticPasswordSavingEnabled() const override;
+ virtual bool IsPasswordManagerEnabledForCurrentPage() const override;
virtual bool ShouldFilterAutofillResult(
- const autofill::PasswordForm& form) OVERRIDE;
+ const autofill::PasswordForm& form) override;
virtual bool IsSyncAccountCredential(
- const std::string& username, const std::string& origin) const OVERRIDE;
- virtual void AutofillResultsComputed() OVERRIDE;
+ const std::string& username, const std::string& origin) const override;
+ virtual void AutofillResultsComputed() override;
virtual bool PromptUserToSavePassword(
- scoped_ptr<password_manager::PasswordFormManager> form_to_save) OVERRIDE;
+ scoped_ptr<password_manager::PasswordFormManager> form_to_save) override;
virtual void AutomaticPasswordSave(
scoped_ptr<password_manager::PasswordFormManager> saved_form_manager)
- OVERRIDE;
+ override;
virtual void PasswordWasAutofilled(
- const autofill::PasswordFormMap& best_matches) const OVERRIDE;
+ const autofill::PasswordFormMap& best_matches) const override;
virtual void PasswordAutofillWasBlocked(
- const autofill::PasswordFormMap& best_matches) const OVERRIDE;
+ const autofill::PasswordFormMap& best_matches) const override;
virtual void AuthenticateAutofillAndFillForm(
- scoped_ptr<autofill::PasswordFormFillData> fill_data) OVERRIDE;
- virtual PrefService* GetPrefs() OVERRIDE;
- virtual password_manager::PasswordStore* GetPasswordStore() OVERRIDE;
- virtual password_manager::PasswordManagerDriver* GetDriver() OVERRIDE;
+ scoped_ptr<autofill::PasswordFormFillData> fill_data) override;
+ virtual PrefService* GetPrefs() override;
+ virtual password_manager::PasswordStore* GetPasswordStore() override;
+ virtual password_manager::PasswordManagerDriver* GetDriver() override;
virtual base::FieldTrial::Probability GetProbabilityForExperiment(
- const std::string& experiment_name) OVERRIDE;
- virtual bool IsPasswordSyncEnabled() OVERRIDE;
- virtual void OnLogRouterAvailabilityChanged(bool router_can_be_used) OVERRIDE;
- virtual void LogSavePasswordProgress(const std::string& text) OVERRIDE;
- virtual bool IsLoggingActive() const OVERRIDE;
+ const std::string& experiment_name) override;
+ virtual bool IsPasswordSyncEnabled() override;
+ virtual void OnLogRouterAvailabilityChanged(bool router_can_be_used) override;
+ virtual void LogSavePasswordProgress(const std::string& text) override;
+ virtual bool IsLoggingActive() const override;
// Hides any visible generation UI.
void HidePasswordGenerationPopup();
@@ -110,7 +110,7 @@ class ChromePasswordManagerClient
friend class content::WebContentsUserData<ChromePasswordManagerClient>;
// content::WebContentsObserver overrides.
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
// Callback method to be triggered when authentication is successful for a
// given password authentication request. If authentication is disabled or

Powered by Google App Engine
This is Rietveld 408576698