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

Unified Diff: net/quic/crypto/quic_server_info.cc

Issue 192583004: QUIC - use QuicSessionKey tuple (host, port, is_https) instead of server_hostname (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with TOT Created 6 years, 9 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: net/quic/crypto/quic_server_info.cc
diff --git a/net/quic/crypto/quic_server_info.cc b/net/quic/crypto/quic_server_info.cc
index 6093008503ab9059a53ca4ac30cac3ebca944431..ab2a06287e0fe450f72b655c12cdc659182fe8f4 100644
--- a/net/quic/crypto/quic_server_info.cc
+++ b/net/quic/crypto/quic_server_info.cc
@@ -29,7 +29,8 @@ void QuicServerInfo::State::Clear() {
certs.clear();
}
-QuicServerInfo::QuicServerInfo(const string& hostname) : hostname_(hostname) {
+QuicServerInfo::QuicServerInfo(const QuicSessionKey& server_key)
+ : server_key_(server_key) {
}
QuicServerInfo::~QuicServerInfo() {

Powered by Google App Engine
This is Rietveld 408576698