summaryrefslogtreecommitdiffstats
path: root/net/server/http_server.h
diff options
context:
space:
mode:
authorAvi Drissman <avi@chromium.org>2015-12-19 23:40:46 -0500
committerAvi Drissman <avi@chromium.org>2015-12-20 04:42:28 +0000
commit13fc893acb88fdd82ad7eea72f9499d123bf5a89 (patch)
tree76aa2bdaa56cb2d05bbf2a6af57e440f9661c7f0 /net/server/http_server.h
parente40cbca89ebc83b5bef0f892d80604b00a98abc8 (diff)
downloadchromium_src-13fc893acb88fdd82ad7eea72f9499d123bf5a89.zip
chromium_src-13fc893acb88fdd82ad7eea72f9499d123bf5a89.tar.gz
chromium_src-13fc893acb88fdd82ad7eea72f9499d123bf5a89.tar.bz2
Switch to standard integer types in net/.
BUG=488550 TBR=mmenke@chromium.org Review URL: https://codereview.chromium.org/1535363003 . Cr-Commit-Position: refs/heads/master@{#366297}
Diffstat (limited to 'net/server/http_server.h')
-rw-r--r--net/server/http_server.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/net/server/http_server.h b/net/server/http_server.h
index b8be0ed..7e103dd 100644
--- a/net/server/http_server.h
+++ b/net/server/http_server.h
@@ -5,10 +5,12 @@
#ifndef NET_SERVER_HTTP_SERVER_H_
#define NET_SERVER_HTTP_SERVER_H_
+#include <stddef.h>
+#include <stdint.h>
+
#include <map>
#include <string>
-#include "base/basictypes.h"
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
@@ -71,8 +73,8 @@ class HttpServer {
void Close(int connection_id);
- void SetReceiveBufferSize(int connection_id, int32 size);
- void SetSendBufferSize(int connection_id, int32 size);
+ void SetReceiveBufferSize(int connection_id, int32_t size);
+ void SetSendBufferSize(int connection_id, int32_t size);
// Copies the local address to |address|. Returns a network error code.
int GetLocalAddress(IPEndPoint* address);