OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_VIEW_H_ |
7 | 7 |
8 #include "chrome/browser/ui/passwords/manage_passwords_bubble.h" | 8 #include "chrome/browser/ui/passwords/manage_passwords_bubble.h" |
9 #include "chrome/browser/ui/views/managed_full_screen_bubble_delegate_view.h" | 9 #include "chrome/browser/ui/views/managed_full_screen_bubble_delegate_view.h" |
10 | 10 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 return initially_focused_view_; | 49 return initially_focused_view_; |
50 } | 50 } |
51 | 51 |
52 private: | 52 private: |
53 class AskUserToSubmitURLView; | 53 class AskUserToSubmitURLView; |
54 class AccountChooserView; | 54 class AccountChooserView; |
55 class AutoSigninView; | 55 class AutoSigninView; |
56 class BlacklistedView; | 56 class BlacklistedView; |
57 class ConfirmNeverView; | 57 class ConfirmNeverView; |
58 class ManageView; | 58 class ManageView; |
| 59 class ManageAccountsView; |
59 class PendingView; | 60 class PendingView; |
60 class SaveConfirmationView; | 61 class SaveConfirmationView; |
61 class WebContentMouseHandler; | 62 class WebContentMouseHandler; |
62 | 63 |
63 ManagePasswordsBubbleView(content::WebContents* web_contents, | 64 ManagePasswordsBubbleView(content::WebContents* web_contents, |
64 ManagePasswordsIconView* anchor_view, | 65 ManagePasswordsIconView* anchor_view, |
65 DisplayReason reason); | 66 DisplayReason reason); |
66 ~ManagePasswordsBubbleView() override; | 67 ~ManagePasswordsBubbleView() override; |
67 | 68 |
68 // ManagedFullScreenBubbleDelegateView: | 69 // ManagedFullScreenBubbleDelegateView: |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 | 103 |
103 views::View* initially_focused_view_; | 104 views::View* initially_focused_view_; |
104 | 105 |
105 // A helper to intercept mouse click events on the web contents. | 106 // A helper to intercept mouse click events on the web contents. |
106 scoped_ptr<WebContentMouseHandler> mouse_handler_; | 107 scoped_ptr<WebContentMouseHandler> mouse_handler_; |
107 | 108 |
108 DISALLOW_COPY_AND_ASSIGN(ManagePasswordsBubbleView); | 109 DISALLOW_COPY_AND_ASSIGN(ManagePasswordsBubbleView); |
109 }; | 110 }; |
110 | 111 |
111 #endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_VIEW_H_ | 112 #endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_VIEW_H_ |
OLD | NEW |