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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 | 54 |
55 private: | 55 private: |
56 class AccountChooserView; | 56 class AccountChooserView; |
57 class AutoSigninView; | 57 class AutoSigninView; |
58 class BlacklistedView; | 58 class BlacklistedView; |
59 class ConfirmNeverView; | 59 class ConfirmNeverView; |
60 class ManageView; | 60 class ManageView; |
61 class ManageAccountsView; | 61 class ManageAccountsView; |
62 class PendingView; | 62 class PendingView; |
63 class SaveConfirmationView; | 63 class SaveConfirmationView; |
| 64 class UpdatePendingView; |
64 class WebContentMouseHandler; | 65 class WebContentMouseHandler; |
65 | 66 |
66 ManagePasswordsBubbleView(content::WebContents* web_contents, | 67 ManagePasswordsBubbleView(content::WebContents* web_contents, |
67 ManagePasswordsIconView* anchor_view, | 68 ManagePasswordsIconView* anchor_view, |
68 DisplayReason reason); | 69 DisplayReason reason); |
69 ~ManagePasswordsBubbleView() override; | 70 ~ManagePasswordsBubbleView() override; |
70 | 71 |
71 // ManagedFullScreenBubbleDelegateView: | 72 // ManagedFullScreenBubbleDelegateView: |
72 views::View* GetInitiallyFocusedView() override; | 73 views::View* GetInitiallyFocusedView() override; |
73 void Init() override; | 74 void Init() override; |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 | 111 |
111 views::View* initially_focused_view_; | 112 views::View* initially_focused_view_; |
112 | 113 |
113 // A helper to intercept mouse click events on the web contents. | 114 // A helper to intercept mouse click events on the web contents. |
114 scoped_ptr<WebContentMouseHandler> mouse_handler_; | 115 scoped_ptr<WebContentMouseHandler> mouse_handler_; |
115 | 116 |
116 DISALLOW_COPY_AND_ASSIGN(ManagePasswordsBubbleView); | 117 DISALLOW_COPY_AND_ASSIGN(ManagePasswordsBubbleView); |
117 }; | 118 }; |
118 | 119 |
119 #endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_VIEW_H_ | 120 #endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_VIEW_H_ |
OLD | NEW |