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

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

Issue 259153004: Password bubble: Give users the option of unblacklisting a site. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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_bubble_ui_controller_mock.h
diff --git a/chrome/browser/ui/passwords/manage_passwords_bubble_ui_controller_mock.h b/chrome/browser/ui/passwords/manage_passwords_bubble_ui_controller_mock.h
index 857fa1593c178f1de2f932a204c2790cfb1bed1a..1d52aa4e5d0349e1dee719052c7674ac530cf2e2 100644
--- a/chrome/browser/ui/passwords/manage_passwords_bubble_ui_controller_mock.h
+++ b/chrome/browser/ui/passwords/manage_passwords_bubble_ui_controller_mock.h
@@ -40,6 +40,9 @@ class ManagePasswordsBubbleUIControllerMock
virtual const autofill::PasswordForm& PendingCredentials() const OVERRIDE;
+ virtual void UnblacklistSite() OVERRIDE;
+ bool unblacklisted_site() const { return unblacklisted_site_; }
+
// True if this controller is installed on |web_contents()|.
bool IsInstalled() const;
@@ -47,6 +50,7 @@ class ManagePasswordsBubbleUIControllerMock
bool navigated_to_settings_page_;
bool saved_password_;
bool never_saved_password_;
+ bool unblacklisted_site_;
autofill::PasswordForm pending_credentials_;

Powered by Google App Engine
This is Rietveld 408576698