| Index: remoting/jingle_glue/ssl_socket_adapter.cc
|
| ===================================================================
|
| --- remoting/jingle_glue/ssl_socket_adapter.cc (revision 90551)
|
| +++ remoting/jingle_glue/ssl_socket_adapter.cc (working copy)
|
| @@ -270,6 +270,16 @@
|
| return false;
|
| }
|
|
|
| +int64 TransportSocket::NumBytesRead() const {
|
| + NOTREACHED();
|
| + return -1;
|
| +}
|
| +
|
| +base::TimeDelta TransportSocket::GetConnectTimeMicros() const {
|
| + NOTREACHED();
|
| + return base::TimeDelta::FromMicroseconds(-1);
|
| +}
|
| +
|
| int TransportSocket::Read(net::IOBuffer* buf, int buf_len,
|
| net::CompletionCallback* callback) {
|
| DCHECK(buf);
|
|
|