Index: net/spdy/spdy_session.cc |
diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc |
index 3c55fccf5c89bd976d498b60f24d9580f53133bc..0f383ad3cf15b4f92590c5222f116f2ce7fe7a40 100644 |
--- a/net/spdy/spdy_session.cc |
+++ b/net/spdy/spdy_session.cc |
@@ -39,7 +39,7 @@ |
#include "net/spdy/spdy_protocol.h" |
#include "net/spdy/spdy_session_pool.h" |
#include "net/spdy/spdy_stream.h" |
-#include "net/ssl/server_bound_cert_service.h" |
+#include "net/ssl/channel_id_service.h" |
#include "net/ssl/ssl_cipher_suite_names.h" |
#include "net/ssl/ssl_connection_status_flags.h" |
@@ -715,8 +715,8 @@ bool SpdySession::VerifyDomainAuthentication(const std::string& domain) { |
return |
!ssl_info.client_cert_sent && |
(!ssl_info.channel_id_sent || |
- (ServerBoundCertService::GetDomainForHost(domain) == |
- ServerBoundCertService::GetDomainForHost(host_port_pair().host()))) && |
+ (ChannelIDService::GetDomainForHost(domain) == |
+ ChannelIDService::GetDomainForHost(host_port_pair().host()))) && |
ssl_info.cert->VerifyNameMatch(domain, &unused); |
} |