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

Unified Diff: chrome/browser/ui/certificate_dialogs.h

Issue 376753002: Fix webui cert viewer showing wrong cert chain on NSS and no chain on OpenSSL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/ui/certificate_dialogs.cc » ('j') | chrome/browser/ui/certificate_dialogs.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « no previous file | chrome/browser/ui/certificate_dialogs.cc » ('j') | chrome/browser/ui/certificate_dialogs.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698