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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 // Shows the ManagePasswords bubble for a particular |web_contents|. | 117 // Shows the ManagePasswords bubble for a particular |web_contents|. |
118 void ShowManagePasswordsBubble(content::WebContents* web_contents); | 118 void ShowManagePasswordsBubble(content::WebContents* web_contents); |
119 | 119 |
| 120 // Closes the bubble if it's shown for |web_contents|. |
| 121 void CloseManagePasswordsBubble(content::WebContents* web_contents); |
| 122 |
120 } // namespace chrome | 123 } // namespace chrome |
121 | 124 |
122 #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ | 125 #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ |
OLD | NEW |