diff options
author | tsepez@chromium.org <tsepez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-17 18:20:52 +0000 |
---|---|---|
committer | tsepez@chromium.org <tsepez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-17 18:20:52 +0000 |
commit | e503a12601fee9e142e37a630f3db9b758499c82 (patch) | |
tree | 7aa599b0890395b715ff2ab292dde9a2f0b10db6 /ppapi | |
parent | 5e3ebf12585ed50e2955d21a6276669f5e3a0e4e (diff) | |
download | chromium_src-e503a12601fee9e142e37a630f3db9b758499c82.zip chromium_src-e503a12601fee9e142e37a630f3db9b758499c82.tar.gz chromium_src-e503a12601fee9e142e37a630f3db9b758499c82.tar.bz2 |
Creates the ipclist utility that chrome security team has wanted to dump
the known IPC messages. Going forward, this should help identify new messages
between versions of chrome so that they may be given extra scrutiny for
potential badness.
under the common_message_generator.h umbrella.
Review URL: http://codereview.chromium.org/6646005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78564 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/proxy/ppapi_messages.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h index c7f59f3..1c89ae2 100644 --- a/ppapi/proxy/ppapi_messages.h +++ b/ppapi/proxy/ppapi_messages.h @@ -38,7 +38,7 @@ IPC_MESSAGE_CONTROL1(PpapiMsg_LoadPlugin, FilePath /* path */) // PpapiHostMsg_ChannelCreated. IPC_MESSAGE_CONTROL2(PpapiMsg_CreateChannel, base::ProcessHandle /* host_process_handle */, - int /* renderer_id */); + int /* renderer_id */) // Each plugin may be referenced by multiple renderers. We need the instance // IDs to be unique within a plugin, despite coming from different renderers, @@ -345,19 +345,19 @@ IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFileRef_GetParent, IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileRef_MakeDirectory, pp::proxy::HostResource /* file_ref */, PP_Bool /* make_ancestors */, - uint32_t /* serialized_callback */); + uint32_t /* serialized_callback */) IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFileRef_Touch, pp::proxy::HostResource /* file_ref */, PP_Time /* last_access */, PP_Time /* last_modified */, - uint32_t /* serialized_callback */); + uint32_t /* serialized_callback */) IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFileRef_Delete, pp::proxy::HostResource /* file_ref */, - uint32_t /* serialized_callback */); + uint32_t /* serialized_callback */) IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileRef_Rename, pp::proxy::HostResource /* file_ref */, pp::proxy::HostResource /* new_file_ref */, - uint32_t /* serialized_callback */); + uint32_t /* serialized_callback */) // PPB_FileSystem. IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFileSystem_Create, |