Index: net/socket/client_socket_pool_base_unittest.cc |
=================================================================== |
--- net/socket/client_socket_pool_base_unittest.cc (revision 25133) |
+++ net/socket/client_socket_pool_base_unittest.cc (working copy) |
@@ -42,6 +42,8 @@ |
IOBuffer* /* buf */, int /* len */, CompletionCallback* /* callback */) { |
return ERR_UNEXPECTED; |
} |
+ virtual bool SetReceiveBufferSize(int32 size) { return true; }; |
+ virtual bool SetSendBufferSize(int32 size) { return true; }; |
// ClientSocket methods: |
@@ -1816,7 +1818,7 @@ |
MessageLoop::current()->RunAllPending(); |
ASSERT_EQ(2, pool_->IdleSocketCount()); |
- |
+ |
// Invoke the idle socket cleanup check. Only one socket should be left, the |
// used socket. Request it to make sure that it's used. |