OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include "gpu/command_buffer/common/command_buffer.h" | 5 #include "gpu/command_buffer/common/command_buffer.h" |
6 #include "gpu/ipc/gpu_command_buffer_traits.h" | 6 #include "gpu/ipc/gpu_command_buffer_traits.h" |
7 #include "ipc/ipc_message_macros.h" | 7 #include "ipc/ipc_message_macros.h" |
8 #include "ppapi/c/dev/pp_file_info_dev.h" | 8 #include "ppapi/c/dev/pp_file_info_dev.h" |
9 #include "ppapi/c/ppb_var.h" | 9 #include "ppapi/c/ppb_var.h" |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 bool /* result */) | 22 bool /* result */) |
23 | 23 |
24 IPC_MESSAGE_CONTROL0(PpapiMsg_Shutdown) | 24 IPC_MESSAGE_CONTROL0(PpapiMsg_Shutdown) |
25 | 25 |
26 // Sent in both directions to see if the other side supports the given | 26 // Sent in both directions to see if the other side supports the given |
27 // interface. | 27 // interface. |
28 IPC_SYNC_MESSAGE_CONTROL1_1(PpapiMsg_SupportsInterface, | 28 IPC_SYNC_MESSAGE_CONTROL1_1(PpapiMsg_SupportsInterface, |
29 std::string /* interface_name */, | 29 std::string /* interface_name */, |
30 bool /* result */) | 30 bool /* result */) |
31 | 31 |
32 // Way for the renderer to list all interfaces that is supports in advance to | |
33 // avoid extra IPC traffic. | |
34 IPC_MESSAGE_CONTROL1(PpapiMsg_DeclareInterfaces, | |
35 std::vector<std::string> /* interfaces */) | |
36 | |
37 IPC_MESSAGE_CONTROL2(PpapiMsg_ExecuteCallback, | 32 IPC_MESSAGE_CONTROL2(PpapiMsg_ExecuteCallback, |
38 uint32 /* serialized_callback */, | 33 uint32 /* serialized_callback */, |
39 int32 /* param */) | 34 int32 /* param */) |
40 | 35 |
41 // PPB_Audio. | 36 // PPB_Audio. |
42 | 37 |
43 // Notifies the result of the audio stream create call. This is called in | 38 // Notifies the result of the audio stream create call. This is called in |
44 // both error cases and in the normal success case. These cases are | 39 // both error cases and in the normal success case. These cases are |
45 // differentiated by the result code, which is one of the standard PPAPI | 40 // differentiated by the result code, which is one of the standard PPAPI |
46 // result codes. | 41 // result codes. |
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
583 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, | 578 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, |
584 pp::proxy::SerializedVar /* var */, | 579 pp::proxy::SerializedVar /* var */, |
585 int64 /* object_class */, | 580 int64 /* object_class */, |
586 int64 /* object-data */, | 581 int64 /* object-data */, |
587 PP_Bool /* result */) | 582 PP_Bool /* result */) |
588 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, | 583 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, |
589 PP_Instance /* instance */, | 584 PP_Instance /* instance */, |
590 int64 /* object_class */, | 585 int64 /* object_class */, |
591 int64 /* object_data */, | 586 int64 /* object_data */, |
592 pp::proxy::SerializedVar /* result */) | 587 pp::proxy::SerializedVar /* result */) |
OLD | NEW |