| Index: ppapi/thunk/ppb_flash_net_connector_thunk.cc
|
| diff --git a/ppapi/thunk/ppb_flash_net_connector_thunk.cc b/ppapi/thunk/ppb_flash_net_connector_thunk.cc
|
| index 14cf751dea5b575997251ddfa464a0d84740235b..95449703d631ccd951f8e06f05f9f29a0b95872a 100644
|
| --- a/ppapi/thunk/ppb_flash_net_connector_thunk.cc
|
| +++ b/ppapi/thunk/ppb_flash_net_connector_thunk.cc
|
| @@ -32,8 +32,8 @@ int32_t ConnectTcp(PP_Resource resource,
|
| const char* host,
|
| uint16_t port,
|
| PP_FileHandle* socket_out,
|
| - PP_Flash_NetAddress* local_addr_out,
|
| - PP_Flash_NetAddress* remote_addr_out,
|
| + PP_NetAddress_Private* local_addr_out,
|
| + PP_NetAddress_Private* remote_addr_out,
|
| PP_CompletionCallback callback) {
|
| EnterResource<PPB_Flash_NetConnector_API> enter(resource, true);
|
| if (enter.failed())
|
| @@ -45,10 +45,10 @@ int32_t ConnectTcp(PP_Resource resource,
|
| }
|
|
|
| int32_t ConnectTcpAddress(PP_Resource resource,
|
| - const PP_Flash_NetAddress* addr,
|
| + const PP_NetAddress_Private* addr,
|
| PP_FileHandle* socket_out,
|
| - PP_Flash_NetAddress* local_addr_out,
|
| - PP_Flash_NetAddress* remote_addr_out,
|
| + PP_NetAddress_Private* local_addr_out,
|
| + PP_NetAddress_Private* remote_addr_out,
|
| PP_CompletionCallback callback) {
|
| EnterResource<PPB_Flash_NetConnector_API> enter(resource, true);
|
| if (enter.failed())
|
|
|