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

Unified Diff: net/socket/socket_test_util.h

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.h
diff --git a/net/socket/socket_test_util.h b/net/socket/socket_test_util.h
index 2918aad2dc55ec4f3b8ff5a63c0e8b584aa1af5c..712cae3264f3a9cff1fb11cc4cf5aa2dbfe808ef 100644
--- a/net/socket/socket_test_util.h
+++ b/net/socket/socket_test_util.h
@@ -47,8 +47,8 @@ enum {
};
class AsyncSocket;
+class ChannelIDService;
class MockClientSocket;
-class ServerBoundCertService;
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,

Powered by Google App Engine
This is Rietveld 408576698