| Index: ppapi/tests/test_udp_socket.h
|
| diff --git a/ppapi/tests/test_udp_socket.h b/ppapi/tests/test_udp_socket.h
|
| index 986806c6fc5b4673d8696a23f531a378bac16e17..66cc7a715d364318cbf26f790f972ac3637d535d 100644
|
| --- a/ppapi/tests/test_udp_socket.h
|
| +++ b/ppapi/tests/test_udp_socket.h
|
| @@ -8,7 +8,7 @@
|
| #include <string>
|
|
|
| #include "ppapi/c/pp_stdint.h"
|
| -#include "ppapi/cpp/dev/net_address_dev.h"
|
| +#include "ppapi/cpp/net_address.h"
|
| #include "ppapi/tests/test_case.h"
|
|
|
| namespace pp {
|
| @@ -24,27 +24,27 @@ class TestUDPSocket: public TestCase {
|
| virtual void RunTests(const std::string& filter);
|
|
|
| private:
|
| - std::string GetLocalAddress(pp::NetAddress_Dev* address);
|
| + std::string GetLocalAddress(pp::NetAddress* address);
|
| std::string SetBroadcastOptions(pp::UDPSocket_Dev* socket);
|
| std::string BindUDPSocket(pp::UDPSocket_Dev* socket,
|
| - const pp::NetAddress_Dev& address);
|
| + const pp::NetAddress& address);
|
| std::string LookupPortAndBindUDPSocket(pp::UDPSocket_Dev* socket,
|
| - pp::NetAddress_Dev* address);
|
| + pp::NetAddress* address);
|
| std::string ReadSocket(pp::UDPSocket_Dev* socket,
|
| - pp::NetAddress_Dev* address,
|
| + pp::NetAddress* address,
|
| size_t size,
|
| std::string* message);
|
| std::string PassMessage(pp::UDPSocket_Dev* target,
|
| pp::UDPSocket_Dev* source,
|
| - const pp::NetAddress_Dev& target_address,
|
| + const pp::NetAddress& target_address,
|
| const std::string& message,
|
| - pp::NetAddress_Dev* recvfrom_address);
|
| + pp::NetAddress* recvfrom_address);
|
|
|
| std::string TestReadWrite();
|
| std::string TestBroadcast();
|
| std::string TestSetOption();
|
|
|
| - pp::NetAddress_Dev address_;
|
| + pp::NetAddress address_;
|
| };
|
|
|
| #endif // PPAPI_TESTS_TEST_UDP_SOCKET_H_
|
|
|