OLD | NEW |
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 Loading... |
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 | |
124 } // namespace chrome | 117 } // namespace chrome |
125 | 118 |
126 #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ | 119 #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ |
OLD | NEW |