Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(465)

Unified Diff: ppapi/proxy/ppb_flash_net_connector_proxy.h

Issue 7623018: Move host resource from the proxy to the shared_impl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments addressed Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/proxy/ppb_flash_menu_proxy.cc ('k') | ppapi/proxy/ppb_flash_net_connector_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « ppapi/proxy/ppb_flash_menu_proxy.cc ('k') | ppapi/proxy/ppb_flash_net_connector_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698