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

Side by Side Diff: chrome/browser/ui/views/passwords/manage_passwords_bubble_view.h

Issue 1151373006: Update Confirmation UI for saved password change (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 4 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 unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698