| Index: net/socket/websocket_endpoint_lock_manager_unittest.cc
|
| diff --git a/net/socket/websocket_endpoint_lock_manager_unittest.cc b/net/socket/websocket_endpoint_lock_manager_unittest.cc
|
| index 20127bf0b79e73347ff1446114f9286c43336aa9..6808d3733fc17c28fbd4f38234cc46b81eec34d1 100644
|
| --- a/net/socket/websocket_endpoint_lock_manager_unittest.cc
|
| +++ b/net/socket/websocket_endpoint_lock_manager_unittest.cc
|
| @@ -5,6 +5,7 @@
|
| #include "net/socket/websocket_endpoint_lock_manager.h"
|
|
|
| #include "base/logging.h"
|
| +#include "base/macros.h"
|
| #include "base/message_loop/message_loop.h"
|
| #include "base/run_loop.h"
|
| #include "base/time/time.h"
|
| @@ -81,9 +82,9 @@ class FakeStreamSocket : public StreamSocket {
|
| return ERR_FAILED;
|
| }
|
|
|
| - int SetReceiveBufferSize(int32 size) override { return ERR_FAILED; }
|
| + int SetReceiveBufferSize(int32_t size) override { return ERR_FAILED; }
|
|
|
| - int SetSendBufferSize(int32 size) override { return ERR_FAILED; }
|
| + int SetSendBufferSize(int32_t size) override { return ERR_FAILED; }
|
|
|
| private:
|
| BoundNetLog bound_net_log_;
|
|
|