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 938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
949 // PPB_Testing. | 949 // PPB_Testing. |
950 IPC_SYNC_MESSAGE_ROUTED3_1( | 950 IPC_SYNC_MESSAGE_ROUTED3_1( |
951 PpapiHostMsg_PPBTesting_ReadImageData, | 951 PpapiHostMsg_PPBTesting_ReadImageData, |
952 ppapi::HostResource /* device_context_2d */, | 952 ppapi::HostResource /* device_context_2d */, |
953 ppapi::HostResource /* image */, | 953 ppapi::HostResource /* image */, |
954 PP_Point /* top_left */, | 954 PP_Point /* top_left */, |
955 PP_Bool /* result */) | 955 PP_Bool /* result */) |
956 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance, | 956 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance, |
957 PP_Instance /* instance */, | 957 PP_Instance /* instance */, |
958 uint32 /* result */) | 958 uint32 /* result */) |
| 959 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTesting_SimulateInputEvent, |
| 960 PP_Instance /* instance */, |
| 961 ppapi::HostResource /* input_event */) |
959 | 962 |
960 // PPB_TextInput. | 963 // PPB_TextInput. |
961 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTextInput_SetTextInputType, | 964 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTextInput_SetTextInputType, |
962 PP_Instance /* instance */, | 965 PP_Instance /* instance */, |
963 PP_TextInput_Type /* type */) | 966 PP_TextInput_Type /* type */) |
964 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBTextInput_UpdateCaretPosition, | 967 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBTextInput_UpdateCaretPosition, |
965 PP_Instance /* instance */, | 968 PP_Instance /* instance */, |
966 PP_Rect /* caret */, | 969 PP_Rect /* caret */, |
967 PP_Rect /* bounding_box */) | 970 PP_Rect /* bounding_box */) |
968 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_CancelCompositionText, | 971 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_CancelCompositionText, |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1107 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1110 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
1108 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1111 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
1109 ppapi::HostResource /* video_decoder */, | 1112 ppapi::HostResource /* video_decoder */, |
1110 int32_t /* picture buffer id */) | 1113 int32_t /* picture buffer id */) |
1111 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1114 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
1112 ppapi::HostResource /* video_decoder */) | 1115 ppapi::HostResource /* video_decoder */) |
1113 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1116 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
1114 ppapi::HostResource /* video_decoder */) | 1117 ppapi::HostResource /* video_decoder */) |
1115 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1118 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
1116 ppapi::HostResource /* video_decoder */) | 1119 ppapi::HostResource /* video_decoder */) |
OLD | NEW |