diff options
author | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-17 19:27:10 +0000 |
---|---|---|
committer | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-17 19:27:10 +0000 |
commit | e8f578d46dcdbce890385371d69a05c92e4f1da0 (patch) | |
tree | e38ee7c7260ee6ab4e6229a67243a12ab937e823 /ppapi/proxy/ppapi_messages.h | |
parent | b47ef742f5db096ff741cb2d00833471a86e279c (diff) | |
download | chromium_src-e8f578d46dcdbce890385371d69a05c92e4f1da0.zip chromium_src-e8f578d46dcdbce890385371d69a05c92e4f1da0.tar.gz chromium_src-e8f578d46dcdbce890385371d69a05c92e4f1da0.tar.bz2 |
Add 'Net*' interface proxies to the untrusted NaCl IPC-PPAPI IRT build.
BUG=116317
TEST=compiles, existing functional tests.
Review URL: https://codereview.chromium.org/10905302
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157162 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/ppapi_messages.h')
-rw-r--r-- | ppapi/proxy/ppapi_messages.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h index 2478b0f..f153e00 100644 --- a/ppapi/proxy/ppapi_messages.h +++ b/ppapi/proxy/ppapi_messages.h @@ -231,13 +231,6 @@ IPC_STRUCT_TRAITS_BEGIN(ppapi::PPB_URLRequestInfo_Data::BodyItem) IPC_STRUCT_TRAITS_MEMBER(expected_last_modified_time) IPC_STRUCT_TRAITS_END() -#if !defined(OS_NACL) && !defined(NACL_WIN64) -IPC_STRUCT_TRAITS_BEGIN(ppapi::proxy::PPPVideoCapture_Buffer) - IPC_STRUCT_TRAITS_MEMBER(resource) - IPC_STRUCT_TRAITS_MEMBER(handle) - IPC_STRUCT_TRAITS_MEMBER(size) -IPC_STRUCT_TRAITS_END() - IPC_STRUCT_TRAITS_BEGIN(ppapi::NetworkInfo) IPC_STRUCT_TRAITS_MEMBER(name) IPC_STRUCT_TRAITS_MEMBER(type) @@ -247,6 +240,13 @@ IPC_STRUCT_TRAITS_BEGIN(ppapi::NetworkInfo) IPC_STRUCT_TRAITS_MEMBER(mtu) IPC_STRUCT_TRAITS_END() +#if !defined(OS_NACL) && !defined(NACL_WIN64) +IPC_STRUCT_TRAITS_BEGIN(ppapi::proxy::PPPVideoCapture_Buffer) + IPC_STRUCT_TRAITS_MEMBER(resource) + IPC_STRUCT_TRAITS_MEMBER(handle) + IPC_STRUCT_TRAITS_MEMBER(size) +IPC_STRUCT_TRAITS_END() + // TODO(tomfinegan): This is identical to PPPVideoCapture_Buffer, maybe replace // both with a single type? IPC_STRUCT_TRAITS_BEGIN(ppapi::proxy::PPPDecryptor_Buffer) @@ -555,6 +555,11 @@ IPC_MESSAGE_ROUTED2(PpapiMsg_PPPMessaging_HandleMessage, IPC_MESSAGE_ROUTED1(PpapiMsg_PPPMouseLock_MouseLockLost, PP_Instance /* instance */) +// PPB_NetworkMonitor_Private. +IPC_MESSAGE_ROUTED2(PpapiMsg_PPBNetworkMonitor_NetworkList, + uint32 /* plugin_dispatcher_id */, + ppapi::NetworkList /* network_list */) + // PPP_Printing IPC_SYNC_MESSAGE_ROUTED1_1(PpapiMsg_PPPPrinting_QuerySupportedFormats, PP_Instance /* instance */, @@ -617,11 +622,6 @@ IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_DecryptAndDecode, ppapi::proxy::PPPDecryptor_Buffer /* buffer */, std::string /* serialized_block_info */) -// PPB_NetworkMonitor_Private. -IPC_MESSAGE_ROUTED2(PpapiMsg_PPBNetworkMonitor_NetworkList, - uint32 /* plugin_dispatcher_id */, - ppapi::NetworkList /* network_list */) - // PPB_Talk IPC_MESSAGE_ROUTED3( PpapiMsg_PPBTalk_GetPermissionACK, @@ -1212,13 +1212,13 @@ IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_DeliverSamples, PP_Instance /* instance */, PP_Resource /* decrypted_samples, PPB_Buffer_Dev */, std::string /* serialized_block_info */) +#endif // !defined(OS_NACL) && !defined(NACL_WIN64) // PPB_NetworkMonitor_Private. IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBNetworkMonitor_Start, uint32 /* plugin_dispatcher_id */) IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBNetworkMonitor_Stop, uint32 /* plugin_dispatcher_id */) -#endif // !defined(OS_NACL) && !defined(NACL_WIN64) // PPB_HostResolver_Private. IPC_MESSAGE_CONTROL5(PpapiHostMsg_PPBHostResolver_Resolve, |