Index: net/socket/socket_test_util.h |
diff --git a/net/socket/socket_test_util.h b/net/socket/socket_test_util.h |
index 2918aad2dc55ec4f3b8ff5a63c0e8b584aa1af5c..8647998c42c3d9aa49bb82696105168c77a12672 100644 |
--- a/net/socket/socket_test_util.h |
+++ b/net/socket/socket_test_util.h |
@@ -48,7 +48,7 @@ enum { |
class AsyncSocket; |
class MockClientSocket; |
-class ServerBoundCertService; |
+class ChannelIDService; |
wtc
2014/07/01 19:50:52
List in alphabetical order.
Ryan Hamilton
2014/07/21 19:12:09
Done.
|
class SSLClientSocket; |
class StreamSocket; |
@@ -333,7 +333,7 @@ struct SSLSocketDataProvider { |
SSLCertRequestInfo* cert_request_info; |
scoped_refptr<X509Certificate> cert; |
bool channel_id_sent; |
- ServerBoundCertService* server_bound_cert_service; |
+ ChannelIDService* channel_id_service; |
int connection_status; |
}; |
@@ -701,7 +701,7 @@ class MockClientSocket : public SSLClientSocket { |
virtual int GetTLSUniqueChannelBinding(std::string* out) OVERRIDE; |
virtual NextProtoStatus GetNextProto(std::string* proto, |
std::string* server_protos) OVERRIDE; |
- virtual ServerBoundCertService* GetServerBoundCertService() const OVERRIDE; |
+ virtual ChannelIDService* GetChannelIDService() const OVERRIDE; |
protected: |
virtual ~MockClientSocket(); |
@@ -964,7 +964,7 @@ class MockSSLClientSocket : public MockClientSocket, public AsyncSocket { |
virtual bool WasChannelIDSent() const OVERRIDE; |
virtual void set_channel_id_sent(bool channel_id_sent) OVERRIDE; |
- virtual ServerBoundCertService* GetServerBoundCertService() const OVERRIDE; |
+ virtual ChannelIDService* GetChannelIDService() const OVERRIDE; |
private: |
static void ConnectCallback(MockSSLClientSocket* ssl_client_socket, |