1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_VIEW_H_
#include "chrome/browser/ui/passwords/manage_passwords_bubble.h"
#include "chrome/browser/ui/views/managed_full_screen_bubble_delegate_view.h"
class ManagePasswordsIconView;
namespace content {
class WebContents;
}
// The ManagePasswordsBubbleView controls the contents of the bubble which
// pops up when Chrome offers to save a user's password, or when the user
// interacts with the Omnibox icon. It has two distinct states:
//
// 1. PendingView: Offers the user the possibility of saving credentials.
// 2. ManageView: Displays the current page's saved credentials.
// 3. BlacklistedView: Informs the user that the current page is blacklisted.
//
class ManagePasswordsBubbleView : public ManagePasswordsBubble,
public ManagedFullScreenBubbleDelegateView {
public:
// Shows the bubble.
static void ShowBubble(content::WebContents* web_contents,
DisplayReason reason);
// Closes the existing bubble.
static void CloseBubble();
// Makes the bubble the foreground window.
static void ActivateBubble();
// Whether the bubble is currently showing.
static bool IsShowing();
// Returns a pointer to the bubble.
static const ManagePasswordsBubbleView* manage_password_bubble() {
return manage_passwords_bubble_;
}
content::WebContents* web_contents() const;
const View* initially_focused_view() const {
return initially_focused_view_;
}
private:
class AskUserToSubmitURLView;
class AccountChooserView;
class BlacklistedView;
class ConfirmNeverView;
class ManageView;
class PendingView;
class SaveConfirmationView;
class WebContentMouseHandler;
ManagePasswordsBubbleView(content::WebContents* web_contents,
ManagePasswordsIconView* anchor_view,
DisplayReason reason);
~ManagePasswordsBubbleView() override;
// ManagedFullScreenBubbleDelegateView:
views::View* GetInitiallyFocusedView() override;
void Init() override;
void WindowClosing() override;
void Close() override;
// Refreshes the bubble's state: called to display a confirmation screen after
// a user selects "Never for this site", for instance.
void Refresh();
// Called from PendingView if the user clicks on "Never for this site" in
// order to display a confirmation screen.
void NotifyNeverForThisSiteClicked();
// Called from ConfirmNeverView if the user confirms her intention to never
// save passwords, and remove existing passwords, for a site.
void NotifyConfirmedNeverForThisSite();
// Called from ConfirmNeverView if the user clicks on "Undo" in order to
// undo the action and refresh to PendingView.
void NotifyUndoNeverForThisSite();
void set_initially_focused_view(views::View* view) {
DCHECK(!initially_focused_view_);
initially_focused_view_ = view;
}
// Singleton instance of the Password bubble. The Password bubble can only be
// shown on the active browser window, so there is no case in which it will be
// shown twice at the same time. The instance is owned by the Bubble and will
// be deleted when the bubble closes.
static ManagePasswordsBubbleView* manage_passwords_bubble_;
ManagePasswordsIconView* anchor_view_;
views::View* initially_focused_view_;
// A helper to intercept mouse click events on the web contents.
scoped_ptr<WebContentMouseHandler> mouse_handler_;
DISALLOW_COPY_AND_ASSIGN(ManagePasswordsBubbleView);
};
#endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_VIEW_H_
|