| Index: webrtc/base/autodetectproxy_unittest.cc
|
| diff --git a/webrtc/base/autodetectproxy_unittest.cc b/webrtc/base/autodetectproxy_unittest.cc
|
| index 4a2688265cc9f43dd235076d66fa3312f3e2bc62..bc57304c0a7332fdf8504bb88371af99c6d4d33e 100644
|
| --- a/webrtc/base/autodetectproxy_unittest.cc
|
| +++ b/webrtc/base/autodetectproxy_unittest.cc
|
| @@ -19,7 +19,7 @@ namespace rtc {
|
| static const char kUserAgent[] = "";
|
| static const char kPath[] = "/";
|
| static const char kHost[] = "relay.google.com";
|
| -static const uint16 kPort = 443;
|
| +static const uint16_t kPort = 443;
|
| static const bool kSecure = true;
|
| // At most, AutoDetectProxy should take ~6 seconds. Each connect step is
|
| // allotted 2 seconds, with the initial resolution + connect given an
|
| @@ -37,10 +37,10 @@ class AutoDetectProxyTest : public testing::Test, public sigslot::has_slots<> {
|
| AutoDetectProxyTest() : auto_detect_proxy_(NULL), done_(false) {}
|
|
|
| protected:
|
| - bool Create(const std::string &user_agent,
|
| - const std::string &path,
|
| - const std::string &host,
|
| - uint16 port,
|
| + bool Create(const std::string& user_agent,
|
| + const std::string& path,
|
| + const std::string& host,
|
| + uint16_t port,
|
| bool secure,
|
| bool startnow) {
|
| auto_detect_proxy_ = new AutoDetectProxy(user_agent);
|
|
|