Index: chrome/browser/ui/passwords/password_manager_presenter.h |
diff --git a/chrome/browser/ui/passwords/password_manager_presenter.h b/chrome/browser/ui/passwords/password_manager_presenter.h |
index 66c68462967c25cc4689f18f2bad21fa34f7e568..4a27cc86d09d3f86332c316f9ad2762065503ce9 100644 |
--- a/chrome/browser/ui/passwords/password_manager_presenter.h |
+++ b/chrome/browser/ui/passwords/password_manager_presenter.h |
@@ -33,7 +33,7 @@ class PasswordManagerPresenter |
// PasswordStore::Observer implementation. |
virtual void OnLoginsChanged( |
- const password_manager::PasswordStoreChangeList& changes) OVERRIDE; |
+ const password_manager::PasswordStoreChangeList& changes) override; |
// Repopulates the password and exception entries. |
void UpdatePasswordLists(); |
@@ -91,11 +91,11 @@ class PasswordManagerPresenter |
explicit PasswordListPopulater(PasswordManagerPresenter* page); |
// Send a query to the password store to populate a password list. |
- virtual void Populate() OVERRIDE; |
+ virtual void Populate() override; |
// Send the password store's reply back to the handler. |
virtual void OnGetPasswordStoreResults( |
- const std::vector<autofill::PasswordForm*>& results) OVERRIDE; |
+ const std::vector<autofill::PasswordForm*>& results) override; |
}; |
// A short class to mediate requests to the password store for exceptions. |
@@ -104,11 +104,11 @@ class PasswordManagerPresenter |
explicit PasswordExceptionListPopulater(PasswordManagerPresenter* page); |
// Send a query to the password store to populate a passwordException list. |
- virtual void Populate() OVERRIDE; |
+ virtual void Populate() override; |
// Send the password store's reply back to the handler. |
virtual void OnGetPasswordStoreResults( |
- const std::vector<autofill::PasswordForm*>& results) OVERRIDE; |
+ const std::vector<autofill::PasswordForm*>& results) override; |
}; |
// Password store consumer for populating the password list and exceptions. |