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

Unified Diff: chrome/browser/load_from_memory_cache_details.h

Issue 6804032: Add TLS-SRP (RFC 5054) support Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: use system srp and mpi libs, not local copies 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
Index: chrome/browser/load_from_memory_cache_details.h
diff --git a/chrome/browser/load_from_memory_cache_details.h b/chrome/browser/load_from_memory_cache_details.h
index d5ffd1ee1a515c794cff66e26c02bc12a6e24d3c..a0ffaa1ea3a74484cfaeb5d3381d8248f0232209 100644
--- a/chrome/browser/load_from_memory_cache_details.h
+++ b/chrome/browser/load_from_memory_cache_details.h
@@ -17,7 +17,8 @@ class LoadFromMemoryCacheDetails {
const std::string& main_frame_origin,
int pid,
int cert_id,
- int cert_status);
+ int cert_status,
+ string16 tls_username);
~LoadFromMemoryCacheDetails();
const GURL& url() const { return url_; }
@@ -26,6 +27,7 @@ class LoadFromMemoryCacheDetails {
int pid() const { return pid_; }
int ssl_cert_id() const { return cert_id_; }
int ssl_cert_status() const { return cert_status_; }
+ string16 tls_username() const { return tls_username_; }
private:
GURL url_;
@@ -34,6 +36,7 @@ class LoadFromMemoryCacheDetails {
int pid_;
int cert_id_;
int cert_status_;
+ string16 tls_username_;
DISALLOW_COPY_AND_ASSIGN(LoadFromMemoryCacheDetails);
};

Powered by Google App Engine
This is Rietveld 408576698