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

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

Issue 479123003: Add ManagePasswordsBubbleConfirmationViewController and unit tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 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..8b08d86cf8f71e9c32b82dcc613d5a263d456fe1 100644
--- a/chrome/browser/ui/passwords/manage_passwords_ui_controller_mock.h
+++ b/chrome/browser/ui/passwords/manage_passwords_ui_controller_mock.h
@@ -33,6 +33,11 @@ class ManagePasswordsUIControllerMock
return navigated_to_settings_page_;
}
+ virtual void NavigateToAccountCentralManagementPage() OVERRIDE;
+ bool navigated_to_account_central_management_page() const {
+ return navigated_to_account_central_management_page_;
+ }
+
// We don't have a FormManager in tests, so stub these out.
virtual void SavePasswordInternal() OVERRIDE;
bool saved_password() const { return saved_password_; }
@@ -58,6 +63,7 @@ class ManagePasswordsUIControllerMock
private:
bool navigated_to_settings_page_;
+ bool navigated_to_account_central_management_page_;
bool saved_password_;
bool never_saved_password_;

Powered by Google App Engine
This is Rietveld 408576698