Index: net/socket/tcp_client_socket_pool_unittest.cc |
=================================================================== |
--- net/socket/tcp_client_socket_pool_unittest.cc (revision 25133) |
+++ net/socket/tcp_client_socket_pool_unittest.cc (working copy) |
@@ -51,6 +51,8 @@ |
CompletionCallback* callback) { |
return ERR_FAILED; |
} |
+ virtual bool SetReceiveBufferSize(int32 size) { return true; } |
+ virtual bool SetSendBufferSize(int32 size) { return true; } |
private: |
bool connected_; |
@@ -84,6 +86,8 @@ |
CompletionCallback* callback) { |
return ERR_FAILED; |
} |
+ virtual bool SetReceiveBufferSize(int32 size) { return true; } |
+ virtual bool SetSendBufferSize(int32 size) { return true; } |
}; |
class MockPendingClientSocket : public ClientSocket { |
@@ -121,6 +125,8 @@ |
CompletionCallback* callback) { |
return ERR_FAILED; |
} |
+ virtual bool SetReceiveBufferSize(int32 size) { return true; } |
+ virtual bool SetSendBufferSize(int32 size) { return true; } |
private: |
void DoCallback(CompletionCallback* callback) { |