| Index: chrome/browser/ui/views/passwords/manage_passwords_bubble_view.h
|
| diff --git a/chrome/browser/ui/views/passwords/manage_passwords_bubble_view.h b/chrome/browser/ui/views/passwords/manage_passwords_bubble_view.h
|
| index 5802f7af47a796aaa52236a4c1d2d7ee331364ac..4f95d9e03bcfb940a003ed88e1ac7c68ebe67eca 100644
|
| --- a/chrome/browser/ui/views/passwords/manage_passwords_bubble_view.h
|
| +++ b/chrome/browser/ui/views/passwords/manage_passwords_bubble_view.h
|
| @@ -86,6 +86,24 @@ class ManagePasswordsBubbleView : public ManagePasswordsBubble,
|
| views::LabelButton* done_button_;
|
| };
|
|
|
| + // A view offering the user the ability to re-enable the password manager for
|
| + // a specific site after she's decided to "never save passwords".
|
| + class BlacklistedView : public views::View, public views::ButtonListener {
|
| + public:
|
| + explicit BlacklistedView(ManagePasswordsBubbleView* parent);
|
| + virtual ~BlacklistedView();
|
| +
|
| + private:
|
| + // views::ButtonListener:
|
| + virtual void ButtonPressed(views::Button* sender,
|
| + const ui::Event& event) OVERRIDE;
|
| +
|
| + ManagePasswordsBubbleView* parent_;
|
| +
|
| + views::BlueButton* unblacklist_button_;
|
| + views::LabelButton* done_button_;
|
| + };
|
| +
|
| // Shows the bubble.
|
| static void ShowBubble(content::WebContents* web_contents,
|
| DisplayReason reason);
|
|
|