| Index: remoting/jingle_glue/ssl_socket_adapter.cc
|
| diff --git a/remoting/jingle_glue/ssl_socket_adapter.cc b/remoting/jingle_glue/ssl_socket_adapter.cc
|
| index 33b04d3d204b9171179b3ed5d7ac0389bc7fcbce..5bcd38348e6b66956910225e3d8c092e9f1a206b 100644
|
| --- a/remoting/jingle_glue/ssl_socket_adapter.cc
|
| +++ b/remoting/jingle_glue/ssl_socket_adapter.cc
|
| @@ -347,11 +347,21 @@ base::TimeDelta TransportSocket::GetConnectTimeMicros() const {
|
| return base::TimeDelta::FromMicroseconds(-1);
|
| }
|
|
|
| +bool TransportSocket::WasNpnNegotiated() const {
|
| + NOTREACHED();
|
| + return false;
|
| +}
|
| +
|
| net::NextProto TransportSocket::GetNegotiatedProtocol() const {
|
| NOTREACHED();
|
| return net::kProtoUnknown;
|
| }
|
|
|
| +bool TransportSocket::GetSSLInfo(net::SSLInfo* ssl_info) {
|
| + NOTREACHED();
|
| + return false;
|
| +}
|
| +
|
| int TransportSocket::Read(net::IOBuffer* buf, int buf_len,
|
| const net::CompletionCallback& callback) {
|
| DCHECK(buf);
|
|
|