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

Unified Diff: chrome/browser/ui/passwords/password_manager_presenter.h

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/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.

Powered by Google App Engine
This is Rietveld 408576698