Index: chrome/browser/ui/certificate_dialogs.h |
diff --git a/chrome/browser/ui/certificate_dialogs.h b/chrome/browser/ui/certificate_dialogs.h |
index 9787ffc769774f118cbce5d66be215f9fe19984e..a7227ddb9b0c9a3dd85e82472c55d75dcbe67d57 100644 |
--- a/chrome/browser/ui/certificate_dialogs.h |
+++ b/chrome/browser/ui/certificate_dialogs.h |
@@ -20,6 +20,12 @@ void ShowCertSelectFileDialog(ui::SelectFileDialog* select_file_dialog, |
void ShowCertExportDialog(content::WebContents* web_contents, |
gfx::NativeWindow parent, |
- net::X509Certificate::OSCertHandle cert); |
+ net::X509Certificate* cert); |
Ryan Sleevi
2014/07/10 02:50:18
Since you're changing the type, it'd be "nicer" to
mattm
2014/07/10 22:57:59
Done.
|
+ |
+void ShowCertExportDialog( |
+ content::WebContents* web_contents, |
+ gfx::NativeWindow parent, |
+ net::X509Certificate::OSCertHandles::iterator certs_begin, |
+ net::X509Certificate::OSCertHandles::iterator certs_end); |
Ryan Sleevi
2014/07/08 02:18:36
I'm a little confused by this.
I would think that
mattm
2014/07/08 02:39:47
Yeah, if you select one of the other certs in the
Ryan Sleevi
2014/07/10 02:50:18
I'm not sure why we did that, nor am I convinced w
mattm
2014/07/10 22:57:59
Firefox cert viewer does the same, and we copied t
|
#endif // CHROME_BROWSER_UI_CERTIFICATE_DIALOGS_H_ |