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

Unified Diff: chrome/browser/tab_contents/navigation_entry.h

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.cc ('k') | chrome/browser/tab_contents/provisional_load_details.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/tab_contents/navigation_entry.h
diff --git a/chrome/browser/tab_contents/navigation_entry.h b/chrome/browser/tab_contents/navigation_entry.h
index 57d93c48f19e707edda9f667ed27f2e32f45108b..96184d51bdd5281fc0f0c2d541d6c6b34320512b 100644
--- a/chrome/browser/tab_contents/navigation_entry.h
+++ b/chrome/browser/tab_contents/navigation_entry.h
@@ -57,7 +57,8 @@ class NavigationEntry {
cert_id_ == status.cert_id_ &&
cert_status_ == status.cert_status_ &&
security_bits_ == status.security_bits_ &&
- content_status_ == status.content_status_;
+ content_status_ == status.content_status_ &&
+ tls_username_ == status.tls_username_;
}
void set_security_style(SecurityStyle security_style) {
@@ -120,6 +121,13 @@ class NavigationEntry {
return content_status_;
}
+ void set_tls_username(string16 tls_username) {
+ tls_username_ = tls_username;
+ }
+ string16 tls_username() const {
+ return tls_username_;
+ }
+
private:
// See the accessors above for descriptions.
SecurityStyle security_style_;
@@ -128,6 +136,7 @@ class NavigationEntry {
int security_bits_;
int connection_status_;
int content_status_;
+ string16 tls_username_;
// Copy and assignment is explicitly allowed for this class.
};
« no previous file with comments | « chrome/browser/ssl/ssl_request_info.cc ('k') | chrome/browser/tab_contents/provisional_load_details.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698