diff options
Diffstat (limited to 'remoting/protocol')
-rw-r--r-- | remoting/protocol/jingle_session.cc | 2 | ||||
-rw-r--r-- | remoting/protocol/jingle_session.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/remoting/protocol/jingle_session.cc b/remoting/protocol/jingle_session.cc index a53aeb4..0f50bab 100644 --- a/remoting/protocol/jingle_session.cc +++ b/remoting/protocol/jingle_session.cc @@ -41,7 +41,7 @@ const char kVideoRtcpChannelName[] = "videortcp"; // Helper method to create a SSL client socket. net::SSLClientSocket* CreateSSLClientSocket( - net::ClientSocket* socket, scoped_refptr<net::X509Certificate> cert, + net::StreamSocket* socket, scoped_refptr<net::X509Certificate> cert, net::CertVerifier* cert_verifier) { net::SSLConfig ssl_config; ssl_config.false_start_enabled = false; diff --git a/remoting/protocol/jingle_session.h b/remoting/protocol/jingle_session.h index d919d56..122aec8 100644 --- a/remoting/protocol/jingle_session.h +++ b/remoting/protocol/jingle_session.h @@ -20,9 +20,9 @@ class TransportChannelSocketAdapter; namespace net { class CertVerifier; -class ClientSocket; class ClientSocketFactory; class Socket; +class StreamSocket; class X509Certificate; } // namespace net |