Switch to standard integer types in net/.
BUG=488550
[email protected]
Review URL: https://codereview.chromium.org/1535363003 .
Cr-Commit-Position: refs/heads/master@{#366297}
diff --git a/net/socket/client_socket_pool_base_unittest.cc b/net/socket/client_socket_pool_base_unittest.cc
index 4e8fbdb0..05fab62 100644
--- a/net/socket/client_socket_pool_base_unittest.cc
+++ b/net/socket/client_socket_pool_base_unittest.cc
@@ -13,6 +13,7 @@
#include "base/callback.h"
#include "base/location.h"
#include "base/logging.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_vector.h"
#include "base/memory/weak_ptr.h"
@@ -151,8 +152,8 @@
was_used_to_convey_data_ = true;
return len;
}
- int SetReceiveBufferSize(int32 size) override { return OK; }
- int SetSendBufferSize(int32 size) override { return OK; }
+ int SetReceiveBufferSize(int32_t size) override { return OK; }
+ int SetSendBufferSize(int32_t size) override { return OK; }
// StreamSocket implementation.
int Connect(const CompletionCallback& callback) override {