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

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

Issue 1001553005: New "Save password" bubble for the Credential Manager API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments Created 5 years, 9 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 } 50 }
51 51
52 private: 52 private:
53 class AccountChooserView; 53 class AccountChooserView;
54 class AutoSigninView; 54 class AutoSigninView;
55 class BlacklistedView; 55 class BlacklistedView;
56 class ConfirmNeverView; 56 class ConfirmNeverView;
57 class ManageView; 57 class ManageView;
58 class ManageAccountsView; 58 class ManageAccountsView;
59 class PendingView; 59 class PendingView;
60 class SaveAccountView;
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:
69 views::View* GetInitiallyFocusedView() override; 70 views::View* GetInitiallyFocusedView() override;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 105
105 views::View* initially_focused_view_; 106 views::View* initially_focused_view_;
106 107
107 // A helper to intercept mouse click events on the web contents. 108 // A helper to intercept mouse click events on the web contents.
108 scoped_ptr<WebContentMouseHandler> mouse_handler_; 109 scoped_ptr<WebContentMouseHandler> mouse_handler_;
109 110
110 DISALLOW_COPY_AND_ASSIGN(ManagePasswordsBubbleView); 111 DISALLOW_COPY_AND_ASSIGN(ManagePasswordsBubbleView);
111 }; 112 };
112 113
113 #endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_VIEW_H_ 114 #endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698