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 956 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
967 // PPB_Testing. | 967 // PPB_Testing. |
968 IPC_SYNC_MESSAGE_ROUTED3_1( | 968 IPC_SYNC_MESSAGE_ROUTED3_1( |
969 PpapiHostMsg_PPBTesting_ReadImageData, | 969 PpapiHostMsg_PPBTesting_ReadImageData, |
970 ppapi::HostResource /* device_context_2d */, | 970 ppapi::HostResource /* device_context_2d */, |
971 ppapi::HostResource /* image */, | 971 ppapi::HostResource /* image */, |
972 PP_Point /* top_left */, | 972 PP_Point /* top_left */, |
973 PP_Bool /* result */) | 973 PP_Bool /* result */) |
974 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance, | 974 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance, |
975 PP_Instance /* instance */, | 975 PP_Instance /* instance */, |
976 uint32 /* result */) | 976 uint32 /* result */) |
| 977 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTesting_SimulateInputEvent, |
| 978 PP_Instance /* instance */, |
| 979 ppapi::InputEventData /* input_event */) |
977 | 980 |
978 // PPB_TextInput. | 981 // PPB_TextInput. |
979 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTextInput_SetTextInputType, | 982 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTextInput_SetTextInputType, |
980 PP_Instance /* instance */, | 983 PP_Instance /* instance */, |
981 PP_TextInput_Type /* type */) | 984 PP_TextInput_Type /* type */) |
982 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBTextInput_UpdateCaretPosition, | 985 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBTextInput_UpdateCaretPosition, |
983 PP_Instance /* instance */, | 986 PP_Instance /* instance */, |
984 PP_Rect /* caret */, | 987 PP_Rect /* caret */, |
985 PP_Rect /* bounding_box */) | 988 PP_Rect /* bounding_box */) |
986 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_CancelCompositionText, | 989 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_CancelCompositionText, |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1125 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1128 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
1126 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1129 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
1127 ppapi::HostResource /* video_decoder */, | 1130 ppapi::HostResource /* video_decoder */, |
1128 int32_t /* picture buffer id */) | 1131 int32_t /* picture buffer id */) |
1129 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1132 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
1130 ppapi::HostResource /* video_decoder */) | 1133 ppapi::HostResource /* video_decoder */) |
1131 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1134 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
1132 ppapi::HostResource /* video_decoder */) | 1135 ppapi::HostResource /* video_decoder */) |
1133 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1136 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
1134 ppapi::HostResource /* video_decoder */) | 1137 ppapi::HostResource /* video_decoder */) |
OLD | NEW |