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

Unified Diff: chrome/browser/ssl/ssl_request_info.cc

Issue 6804032: Add TLS-SRP (RFC 5054) support Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: remove "httpsv" scheme, minor NSS/OpenSSL changes Created 9 years, 8 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 | « chrome/browser/ssl/ssl_request_info.h ('k') | chrome/browser/tab_contents/navigation_entry.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ssl/ssl_request_info.cc
diff --git a/chrome/browser/ssl/ssl_request_info.cc b/chrome/browser/ssl/ssl_request_info.cc
index 7ba88b0921595f77b7611f780db58f7386a14d12..92804669c0c4fad8e3e4a00000a7c63a2a95d75f 100644
--- a/chrome/browser/ssl/ssl_request_info.cc
+++ b/chrome/browser/ssl/ssl_request_info.cc
@@ -10,14 +10,16 @@ SSLRequestInfo::SSLRequestInfo(const GURL& url,
const std::string& main_frame_origin,
int child_id,
int ssl_cert_id,
- int ssl_cert_status)
+ int ssl_cert_status,
+ string16 tls_username)
: url_(url),
resource_type_(resource_type),
frame_origin_(frame_origin),
main_frame_origin_(main_frame_origin),
child_id_(child_id),
ssl_cert_id_(ssl_cert_id),
- ssl_cert_status_(ssl_cert_status) {
+ ssl_cert_status_(ssl_cert_status),
+ tls_username_(tls_username) {
}
SSLRequestInfo::~SSLRequestInfo() {}
« no previous file with comments | « chrome/browser/ssl/ssl_request_info.h ('k') | chrome/browser/tab_contents/navigation_entry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698