summaryrefslogtreecommitdiff
path: root/chromium/net/socket/tcp_socket_posix.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/socket/tcp_socket_posix.h')
-rw-r--r--chromium/net/socket/tcp_socket_posix.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/chromium/net/socket/tcp_socket_posix.h b/chromium/net/socket/tcp_socket_posix.h
index de9487c35f7..8d53caf567f 100644
--- a/chromium/net/socket/tcp_socket_posix.h
+++ b/chromium/net/socket/tcp_socket_posix.h
@@ -5,9 +5,11 @@
#ifndef NET_SOCKET_TCP_SOCKET_POSIX_H_
#define NET_SOCKET_TCP_SOCKET_POSIX_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "base/callback.h"
#include "base/compiler_specific.h"
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/time/time.h"
#include "net/base/address_family.h"
@@ -59,8 +61,8 @@ class NET_EXPORT TCPSocketPosix {
// - SetKeepAlive(true, 45).
void SetDefaultOptionsForClient();
int SetAddressReuse(bool allow);
- int SetReceiveBufferSize(int32 size);
- int SetSendBufferSize(int32 size);
+ int SetReceiveBufferSize(int32_t size);
+ int SetSendBufferSize(int32_t size);
bool SetKeepAlive(bool enable, int delay);
bool SetNoDelay(bool no_delay);
@@ -77,6 +79,11 @@ class NET_EXPORT TCPSocketPosix {
bool IsValid() const;
+ // Detachs from the current thread, to allow the socket to be transferred to
+ // a new thread. Should only be called when the object is no longer used by
+ // the old thread.
+ void DetachFromThread();
+
// Marks the start/end of a series of connect attempts for logging purpose.
//
// TCPClientSocket may attempt to connect to multiple addresses until it