Index: net/socket/socket_test_util.cc |
diff --git a/net/socket/socket_test_util.cc b/net/socket/socket_test_util.cc |
index f993801adeb2814aede788bcf82c693bfa99696f..4f671c685867739f92c1e58037aba76dc4f7d5bb 100644 |
--- a/net/socket/socket_test_util.cc |
+++ b/net/socket/socket_test_util.cc |
@@ -776,7 +776,7 @@ int MockClientSocket::GetTLSUniqueChannelBinding(std::string* out) { |
return OK; |
} |
-ServerBoundCertService* MockClientSocket::GetServerBoundCertService() const { |
+ChannelIDService* MockClientSocket::GetChannelIDService() const { |
NOTREACHED(); |
return NULL; |
} |
@@ -1437,8 +1437,8 @@ void MockSSLClientSocket::set_channel_id_sent(bool channel_id_sent) { |
data_->channel_id_sent = channel_id_sent; |
} |
-ServerBoundCertService* MockSSLClientSocket::GetServerBoundCertService() const { |
- return data_->server_bound_cert_service; |
+ChannelIDService* MockSSLClientSocket::GetChannelIDService() const { |
+ return data_->channel_id_service; |
} |
void MockSSLClientSocket::OnReadComplete(const MockRead& data) { |