| Index: ppapi/tests/test_udp_socket_private_shared.h
|
| diff --git a/ppapi/tests/test_udp_socket_private_shared.h b/ppapi/tests/test_udp_socket_private_shared.h
|
| index 8104d01d4de8510aa6f6abafa9b04805d5bbb348..25b4afa8a9d479a40039fc81aea3139c1692aecd 100644
|
| --- a/ppapi/tests/test_udp_socket_private_shared.h
|
| +++ b/ppapi/tests/test_udp_socket_private_shared.h
|
| @@ -20,9 +20,6 @@ class TestUDPSocketPrivateShared : public TestCase {
|
| void QuitMessageLoop();
|
|
|
| private:
|
| - static const char* const kHost;
|
| - static const int kPort = 80;
|
| -
|
| // Creates tcp_socket and connects to www.google.com:80. After that,
|
| // stores into |address| local address and returns created
|
| // tcp_socket. This is a way to create |PP_NetAddress_Private|
|
| @@ -37,6 +34,8 @@ class TestUDPSocketPrivateShared : public TestCase {
|
|
|
| const PPB_TCPSocket_Private* tcp_socket_private_interface_;
|
| const PPB_UDPSocket_Private* udp_socket_private_interface_;
|
| + std::string host_;
|
| + uint16_t port_;
|
| };
|
|
|
| #endif // PPAPI_TESTS_TEST_UDP_SOCKET_PRIVATE_SHARED_H_
|
|
|