| Index: net/socket/transport_client_socket_pool_unittest.cc | 
| =================================================================== | 
| --- net/socket/transport_client_socket_pool_unittest.cc	(revision 90003) | 
| +++ net/socket/transport_client_socket_pool_unittest.cc	(working copy) | 
| @@ -85,6 +85,8 @@ | 
| virtual void SetOmniboxSpeculation() {} | 
| virtual bool WasEverUsed() const { return false; } | 
| virtual bool UsingTCPFastOpen() const { return false; } | 
| +  virtual int64 NumBytesRead() const { return -1; } | 
| +  virtual int GetConnectTimeMicros() const { return -1; } | 
|  | 
| // Socket methods: | 
| virtual int Read(IOBuffer* buf, int buf_len, | 
| @@ -135,6 +137,8 @@ | 
| virtual void SetOmniboxSpeculation() {} | 
| virtual bool WasEverUsed() const { return false; } | 
| virtual bool UsingTCPFastOpen() const { return false; } | 
| +  virtual int64 NumBytesRead() const { return -1; } | 
| +  virtual int GetConnectTimeMicros() const { return -1; } | 
|  | 
| // Socket methods: | 
| virtual int Read(IOBuffer* buf, int buf_len, | 
| @@ -209,6 +213,8 @@ | 
| virtual void SetOmniboxSpeculation() {} | 
| virtual bool WasEverUsed() const { return false; } | 
| virtual bool UsingTCPFastOpen() const { return false; } | 
| +  virtual int64 NumBytesRead() const { return -1; } | 
| +  virtual int GetConnectTimeMicros() const { return -1; } | 
|  | 
| // Socket methods: | 
| virtual int Read(IOBuffer* buf, int buf_len, | 
|  |