Index: net/socket/socks_client_socket.cc |
=================================================================== |
--- net/socket/socks_client_socket.cc (revision 90003) |
+++ net/socket/socks_client_socket.cc (working copy) |
@@ -169,7 +169,23 @@ |
return false; |
} |
+int64 SOCKSClientSocket::NumBytesRead() const { |
+ if (transport_.get() && transport_->socket()) { |
+ return transport_->socket()->NumBytesRead(); |
+ } |
+ NOTREACHED(); |
+ return -1; |
+} |
+int SOCKSClientSocket::GetConnectTimeMicros() const { |
+ if (transport_.get() && transport_->socket()) { |
+ return transport_->socket()->GetConnectTimeMicros(); |
+ } |
+ NOTREACHED(); |
+ return -1; |
+} |
+ |
+ |
// Read is called by the transport layer above to read. This can only be done |
// if the SOCKS handshake is complete. |
int SOCKSClientSocket::Read(IOBuffer* buf, int buf_len, |