Index: ppapi/thunk/ppb_flash_tcp_socket_thunk.cc |
diff --git a/ppapi/thunk/ppb_flash_tcp_socket_thunk.cc b/ppapi/thunk/ppb_flash_tcp_socket_thunk.cc |
index a1ce67ea31ee7640d1761a1c84ae44dd8b7f7cba..de21042df0d1a060e5422c3667f56209351754e6 100644 |
--- a/ppapi/thunk/ppb_flash_tcp_socket_thunk.cc |
+++ b/ppapi/thunk/ppb_flash_tcp_socket_thunk.cc |
@@ -40,7 +40,7 @@ int32_t Connect(PP_Resource tcp_socket, |
} |
int32_t ConnectWithNetAddress(PP_Resource tcp_socket, |
- const PP_Flash_NetAddress* addr, |
+ const PP_NetAddress_Private* addr, |
PP_CompletionCallback callback) { |
EnterResource<PPB_Flash_TCPSocket_API> enter(tcp_socket, true); |
if (enter.failed()) |
@@ -50,7 +50,7 @@ int32_t ConnectWithNetAddress(PP_Resource tcp_socket, |
} |
PP_Bool GetLocalAddress(PP_Resource tcp_socket, |
- PP_Flash_NetAddress* local_addr) { |
+ PP_NetAddress_Private* local_addr) { |
EnterResource<PPB_Flash_TCPSocket_API> enter(tcp_socket, true); |
if (enter.failed()) |
return PP_FALSE; |
@@ -58,7 +58,7 @@ PP_Bool GetLocalAddress(PP_Resource tcp_socket, |
} |
PP_Bool GetRemoteAddress(PP_Resource tcp_socket, |
- PP_Flash_NetAddress* remote_addr) { |
+ PP_NetAddress_Private* remote_addr) { |
EnterResource<PPB_Flash_TCPSocket_API> enter(tcp_socket, true); |
if (enter.failed()) |
return PP_FALSE; |