| Index: ppapi/proxy/ppb_flash_net_connector_proxy.h
|
| diff --git a/ppapi/proxy/ppb_flash_net_connector_proxy.h b/ppapi/proxy/ppb_flash_net_connector_proxy.h
|
| index 67647c268261d13f754f309d0c5bc9f01b46a280..d43bd62395d72c7237305651163b4bd852373bf1 100644
|
| --- a/ppapi/proxy/ppb_flash_net_connector_proxy.h
|
| +++ b/ppapi/proxy/ppb_flash_net_connector_proxy.h
|
| @@ -14,11 +14,13 @@
|
|
|
| struct PPB_Flash_NetConnector;
|
|
|
| +namespace ppapi {
|
| +class HostResource;
|
| +}
|
| +
|
| namespace pp {
|
| namespace proxy {
|
|
|
| -class HostResource;
|
| -
|
| class PPB_Flash_NetConnector_Proxy : public InterfaceProxy {
|
| public:
|
| PPB_Flash_NetConnector_Proxy(Dispatcher* dispatcher,
|
| @@ -37,15 +39,15 @@ class PPB_Flash_NetConnector_Proxy : public InterfaceProxy {
|
|
|
| // Plugin->host message handlers.
|
| void OnMsgCreate(PP_Instance instance,
|
| - HostResource* result);
|
| - void OnMsgConnectTcp(const HostResource& resource,
|
| + ppapi::HostResource* result);
|
| + void OnMsgConnectTcp(const ppapi::HostResource& resource,
|
| const std::string& host,
|
| uint16_t port);
|
| - void OnMsgConnectTcpAddress(const HostResource& resource_id,
|
| + void OnMsgConnectTcpAddress(const ppapi::HostResource& resource_id,
|
| const std::string& net_address_as_string);
|
|
|
| // Host->plugin message handler.
|
| - void OnMsgConnectACK(const HostResource& host_resource,
|
| + void OnMsgConnectACK(const ppapi::HostResource& host_resource,
|
| int32_t result,
|
| IPC::PlatformFileForTransit handle,
|
| const std::string& load_addr_as_string,
|
|
|