OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Multiply-included message header, no traditional include guard. | 5 // Multiply-included message header, no traditional include guard. |
6 #include <string> | 6 #include <string> |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 PP_Instance /* instance */, | 282 PP_Instance /* instance */, |
283 pp::proxy::HostResource /* result_resource */) | 283 pp::proxy::HostResource /* result_resource */) |
284 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBBroker_Connect, | 284 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBBroker_Connect, |
285 pp::proxy::HostResource /* broker */) | 285 pp::proxy::HostResource /* broker */) |
286 | 286 |
287 // PPB_Buffer. | 287 // PPB_Buffer. |
288 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBBuffer_Create, | 288 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBBuffer_Create, |
289 PP_Instance /* instance */, | 289 PP_Instance /* instance */, |
290 uint32_t /* size */, | 290 uint32_t /* size */, |
291 pp::proxy::HostResource /* result_resource */, | 291 pp::proxy::HostResource /* result_resource */, |
292 int32_t /* result_shm_handle */) | 292 base::SharedMemoryHandle /* result_shm_handle */) |
293 | 293 |
294 // PPB_Console. | 294 // PPB_Console. |
295 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBConsole_Log, | 295 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBConsole_Log, |
296 PP_Instance /* instance */, | 296 PP_Instance /* instance */, |
297 int /* log_level */, | 297 int /* log_level */, |
298 pp::proxy::SerializedVar /* value */) | 298 pp::proxy::SerializedVar /* value */) |
299 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBConsole_LogWithSource, | 299 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBConsole_LogWithSource, |
300 PP_Instance /* instance */, | 300 PP_Instance /* instance */, |
301 int /* log_level */, | 301 int /* log_level */, |
302 pp::proxy::SerializedVar /* soruce */, | 302 pp::proxy::SerializedVar /* soruce */, |
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
782 PP_Bool /* is_always_opaque */, | 782 PP_Bool /* is_always_opaque */, |
783 pp::proxy::HostResource /* result */) | 783 pp::proxy::HostResource /* result */) |
784 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_ResourceCreation_ImageData, | 784 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_ResourceCreation_ImageData, |
785 PP_Instance /* instance */, | 785 PP_Instance /* instance */, |
786 int32 /* format */, | 786 int32 /* format */, |
787 PP_Size /* size */, | 787 PP_Size /* size */, |
788 PP_Bool /* init_to_zero */, | 788 PP_Bool /* init_to_zero */, |
789 pp::proxy::HostResource /* result_resource */, | 789 pp::proxy::HostResource /* result_resource */, |
790 std::string /* image_data_desc */, | 790 std::string /* image_data_desc */, |
791 pp::proxy::ImageHandle /* result */) | 791 pp::proxy::ImageHandle /* result */) |
792 | |
OLD | NEW |