| Index: components/password_manager/core/browser/password_form_manager_unittest.cc
|
| diff --git a/components/password_manager/core/browser/password_form_manager_unittest.cc b/components/password_manager/core/browser/password_form_manager_unittest.cc
|
| index 73718103e14b415bddb5a15c38acec5d05b52fd1..c269e4fa43c0e1e7b76d55137dc48b8dfb9729f1 100644
|
| --- a/components/password_manager/core/browser/password_form_manager_unittest.cc
|
| +++ b/components/password_manager/core/browser/password_form_manager_unittest.cc
|
| @@ -61,17 +61,17 @@ class TestPasswordManagerClient : public StubPasswordManagerClient {
|
| }
|
|
|
| virtual bool ShouldFilterAutofillResult(
|
| - const autofill::PasswordForm& form) OVERRIDE {
|
| + const autofill::PasswordForm& form) override {
|
| if (form == form_to_filter_)
|
| return true;
|
| return false;
|
| }
|
|
|
| - virtual PrefService* GetPrefs() OVERRIDE { return &prefs_; }
|
| - virtual PasswordStore* GetPasswordStore() OVERRIDE { return password_store_; }
|
| - virtual PasswordManagerDriver* GetDriver() OVERRIDE { return &driver_; }
|
| + virtual PrefService* GetPrefs() override { return &prefs_; }
|
| + virtual PasswordStore* GetPasswordStore() override { return password_store_; }
|
| + virtual PasswordManagerDriver* GetDriver() override { return &driver_; }
|
| virtual void AuthenticateAutofillAndFillForm(
|
| - scoped_ptr<autofill::PasswordFormFillData> fill_data) OVERRIDE {
|
| + scoped_ptr<autofill::PasswordFormFillData> fill_data) override {
|
| driver_.FillPasswordForm(*fill_data.get());
|
| }
|
|
|
| @@ -97,7 +97,7 @@ class TestPasswordManager : public PasswordManager {
|
| virtual void Autofill(const autofill::PasswordForm& form_for_autofill,
|
| const autofill::PasswordFormMap& best_matches,
|
| const autofill::PasswordForm& preferred_match,
|
| - bool wait_for_username) const OVERRIDE {
|
| + bool wait_for_username) const override {
|
| best_matches_ = best_matches;
|
| }
|
|
|
|
|