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

Unified Diff: net/socket/socket_test_util.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/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) {

Powered by Google App Engine
This is Rietveld 408576698