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

Unified Diff: chrome/browser/load_from_memory_cache_details.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/load_from_memory_cache_details.h ('k') | chrome/browser/page_info_model.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/load_from_memory_cache_details.cc
diff --git a/chrome/browser/load_from_memory_cache_details.cc b/chrome/browser/load_from_memory_cache_details.cc
index 2791020f98f79081c20519e16aa6db3f837825c0..e3fe5705d09620ee59aeef16d27fe026f50c763f 100644
--- a/chrome/browser/load_from_memory_cache_details.cc
+++ b/chrome/browser/load_from_memory_cache_details.cc
@@ -10,13 +10,15 @@ LoadFromMemoryCacheDetails::LoadFromMemoryCacheDetails(
const std::string& main_frame_origin,
int pid,
int cert_id,
- int cert_status)
+ int cert_status,
+ string16 tls_username)
: url_(url),
frame_origin_(frame_origin),
main_frame_origin_(main_frame_origin),
pid_(pid),
cert_id_(cert_id),
- cert_status_(cert_status) {
+ cert_status_(cert_status),
+ tls_username_(tls_username) {
}
LoadFromMemoryCacheDetails::~LoadFromMemoryCacheDetails() {
« no previous file with comments | « chrome/browser/load_from_memory_cache_details.h ('k') | chrome/browser/page_info_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698