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

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

Issue 924733003: Credential Manager API pops up an auto-signin toast. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 45
46 content::WebContents* web_contents() const; 46 content::WebContents* web_contents() const;
47 47
48 const View* initially_focused_view() const { 48 const View* initially_focused_view() const {
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 BlacklistedView; 56 class BlacklistedView;
56 class ConfirmNeverView; 57 class ConfirmNeverView;
57 class ManageView; 58 class ManageView;
58 class PendingView; 59 class PendingView;
59 class SaveConfirmationView; 60 class SaveConfirmationView;
60 class WebContentMouseHandler; 61 class WebContentMouseHandler;
61 62
62 ManagePasswordsBubbleView(content::WebContents* web_contents, 63 ManagePasswordsBubbleView(content::WebContents* web_contents,
63 ManagePasswordsIconView* anchor_view, 64 ManagePasswordsIconView* anchor_view,
64 DisplayReason reason); 65 DisplayReason reason);
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 102
102 views::View* initially_focused_view_; 103 views::View* initially_focused_view_;
103 104
104 // A helper to intercept mouse click events on the web contents. 105 // A helper to intercept mouse click events on the web contents.
105 scoped_ptr<WebContentMouseHandler> mouse_handler_; 106 scoped_ptr<WebContentMouseHandler> mouse_handler_;
106 107
107 DISALLOW_COPY_AND_ASSIGN(ManagePasswordsBubbleView); 108 DISALLOW_COPY_AND_ASSIGN(ManagePasswordsBubbleView);
108 }; 109 };
109 110
110 #endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_VIEW_H_ 111 #endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698