Index: net/socket/ssl_client_socket_nss.cc |
=================================================================== |
--- net/socket/ssl_client_socket_nss.cc (revision 90003) |
+++ net/socket/ssl_client_socket_nss.cc (working copy) |
@@ -716,6 +716,22 @@ |
return false; |
} |
+int64 SSLClientSocketNSS::NumBytesRead() const { |
+ if (transport_.get() && transport_->socket()) { |
+ return transport_->socket()->NumBytesRead(); |
+ } |
+ NOTREACHED(); |
+ return -1; |
+} |
+ |
+int SSLClientSocketNSS::GetConnectTimeMicros() const { |
+ if (transport_.get() && transport_->socket()) { |
+ return transport_->socket()->GetConnectTimeMicros(); |
+ } |
+ NOTREACHED(); |
+ return -1; |
+} |
+ |
int SSLClientSocketNSS::Read(IOBuffer* buf, int buf_len, |
CompletionCallback* callback) { |
EnterFunction(buf_len); |