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

Unified Diff: chrome/browser/ui/passwords/manage_passwords_ui_controller_mock.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/manage_passwords_ui_controller_mock.h
diff --git a/chrome/browser/ui/passwords/manage_passwords_ui_controller_mock.h b/chrome/browser/ui/passwords/manage_passwords_ui_controller_mock.h
index 020131bd2f7ad11a614ef8f59c03582980cab8ea..aad8d50f04dcf7b41ce51489099d93e412d00a29 100644
--- a/chrome/browser/ui/passwords/manage_passwords_ui_controller_mock.h
+++ b/chrome/browser/ui/passwords/manage_passwords_ui_controller_mock.h
@@ -28,19 +28,19 @@ class ManagePasswordsUIControllerMock
// is native UI and therefore isn't available in a tab for unit tests.
//
// TODO(mkwst): Determine how to reasonably test this on that platform.
- virtual void NavigateToPasswordManagerSettingsPage() OVERRIDE;
+ virtual void NavigateToPasswordManagerSettingsPage() override;
bool navigated_to_settings_page() const {
return navigated_to_settings_page_;
}
// We don't have a FormManager in tests, so stub these out.
- virtual void SavePasswordInternal() OVERRIDE;
+ virtual void SavePasswordInternal() override;
bool saved_password() const { return saved_password_; }
- virtual void NeverSavePasswordInternal() OVERRIDE;
+ virtual void NeverSavePasswordInternal() override;
bool never_saved_password() const { return never_saved_password_; }
- virtual const autofill::PasswordForm& PendingCredentials() const OVERRIDE;
+ virtual const autofill::PasswordForm& PendingCredentials() const override;
void SetPendingCredentials(autofill::PasswordForm pending_credentials);
// Sneaky setters for testing.

Powered by Google App Engine
This is Rietveld 408576698