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

Side by Side Diff: chrome/browser/ui/browser_dialogs.h

Issue 246393004: Password bubble: Introduce a command to open the bubble. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix. Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_BROWSER_DIALOGS_H_ 5 #ifndef CHROME_BROWSER_UI_BROWSER_DIALOGS_H_
6 #define CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ 6 #define CHROME_BROWSER_UI_BROWSER_DIALOGS_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "chrome/browser/profiles/profile_window.h" 9 #include "chrome/browser/profiles/profile_window.h"
10 #include "content/public/common/signed_certificate_timestamp_id_and_status.h" 10 #include "content/public/common/signed_certificate_timestamp_id_and_status.h"
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 107
108 // Hides the User Manager. 108 // Hides the User Manager.
109 void HideUserManager(); 109 void HideUserManager();
110 110
111 // Shows the Signed Certificate Timestamps viewer, to view the signed 111 // Shows the Signed Certificate Timestamps viewer, to view the signed
112 // certificate timestamps in |sct_ids_list| 112 // certificate timestamps in |sct_ids_list|
113 void ShowSignedCertificateTimestampsViewer( 113 void ShowSignedCertificateTimestampsViewer(
114 content::WebContents* web_contents, 114 content::WebContents* web_contents,
115 const content::SignedCertificateTimestampIDStatusList& sct_ids_list); 115 const content::SignedCertificateTimestampIDStatusList& sct_ids_list);
116 116
117 #if !defined(OS_MACOSX)
118 // Shows the ManagePasswords bubble for a particular |web_contents|.
119 //
120 // TODO(mkwst): Implement this feature on Mac: http://crbug.com/261628
121 void ShowManagePasswordsBubble(content::WebContents* web_contents);
122 #endif
123
117 } // namespace chrome 124 } // namespace chrome
118 125
119 #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ 126 #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698