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

Unified Diff: net/quic/quic_client_session.cc

Issue 356713005: Rename ServerBoundCert => ChannelID to reflect the current name (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix cookies_list.js Created 6 years, 5 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/quic_client_session.cc
diff --git a/net/quic/quic_client_session.cc b/net/quic/quic_client_session.cc
index 067009e2e5928a7767f9f0836435a502e1d3bc15..0b63168da45dcc5246cbb42d2bc645f7fb233606 100644
--- a/net/quic/quic_client_session.cc
+++ b/net/quic/quic_client_session.cc
@@ -20,7 +20,7 @@
#include "net/quic/quic_default_packet_writer.h"
#include "net/quic/quic_server_id.h"
#include "net/quic/quic_stream_factory.h"
-#include "net/ssl/server_bound_cert_service.h"
+#include "net/ssl/channel_id_service.h"
#include "net/ssl/ssl_connection_status_flags.h"
#include "net/ssl/ssl_info.h"
#include "net/udp/datagram_client_socket.h"
@@ -499,8 +499,8 @@ bool QuicClientSession::CanPool(const std::string& hostname) const {
return false;
if (ssl_info.channel_id_sent &&
- ServerBoundCertService::GetDomainForHost(hostname) !=
- ServerBoundCertService::GetDomainForHost(server_host_port_.host())) {
+ ChannelIDService::GetDomainForHost(hostname) !=
+ ChannelIDService::GetDomainForHost(server_host_port_.host())) {
return false;
}

Powered by Google App Engine
This is Rietveld 408576698