| Index: chrome/test/chromedriver/net/websocket.cc
|
| diff --git a/chrome/test/chromedriver/net/websocket.cc b/chrome/test/chromedriver/net/websocket.cc
|
| index 9b1ed935764bfc0f580c081100b1c0cf4741aa6e..17dfc1383faef6007492c8e73c56adbb630bd038 100644
|
| --- a/chrome/test/chromedriver/net/websocket.cc
|
| +++ b/chrome/test/chromedriver/net/websocket.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "chrome/test/chromedriver/net/websocket.h"
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| #include <string.h>
|
| #include <vector>
|
|
|
| @@ -15,6 +17,7 @@
|
| #include "base/sha1.h"
|
| #include "base/strings/string_number_conversions.h"
|
| #include "base/strings/stringprintf.h"
|
| +#include "build/build_config.h"
|
| #include "net/base/address_list.h"
|
| #include "net/base/io_buffer.h"
|
| #include "net/base/ip_endpoint.h"
|
| @@ -80,7 +83,7 @@ void WebSocket::Connect(const net::CompletionCallback& callback) {
|
| }
|
| }
|
| net::AddressList addresses(
|
| - net::IPEndPoint(address, static_cast<uint16>(url_.EffectiveIntPort())));
|
| + net::IPEndPoint(address, static_cast<uint16_t>(url_.EffectiveIntPort())));
|
| net::NetLog::Source source;
|
| socket_.reset(new net::TCPClientSocket(addresses, NULL, source));
|
|
|
|
|