OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <map> | 6 #include <map> |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 1186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1197 // PPB_Testing. | 1197 // PPB_Testing. |
1198 IPC_SYNC_MESSAGE_ROUTED3_1( | 1198 IPC_SYNC_MESSAGE_ROUTED3_1( |
1199 PpapiHostMsg_PPBTesting_ReadImageData, | 1199 PpapiHostMsg_PPBTesting_ReadImageData, |
1200 ppapi::HostResource /* device_context_2d */, | 1200 ppapi::HostResource /* device_context_2d */, |
1201 ppapi::HostResource /* image */, | 1201 ppapi::HostResource /* image */, |
1202 PP_Point /* top_left */, | 1202 PP_Point /* top_left */, |
1203 PP_Bool /* result */) | 1203 PP_Bool /* result */) |
1204 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance, | 1204 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance, |
1205 PP_Instance /* instance */, | 1205 PP_Instance /* instance */, |
1206 uint32 /* result */) | 1206 uint32 /* result */) |
1207 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_IsPeripheral, | 1207 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBTesting_PostPowerSaverStatus, |
1208 PP_Instance /* instance */, | 1208 PP_Instance /* instance */) |
1209 PP_Bool /* result */) | 1209 IPC_SYNC_MESSAGE_ROUTED1_0( |
| 1210 PpapiHostMsg_PPBTesting_SubscribeToPowerSaverNotifications, |
| 1211 PP_Instance /* instance */) |
1210 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTesting_SimulateInputEvent, | 1212 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTesting_SimulateInputEvent, |
1211 PP_Instance /* instance */, | 1213 PP_Instance /* instance */, |
1212 ppapi::InputEventData /* input_event */) | 1214 ppapi::InputEventData /* input_event */) |
1213 IPC_SYNC_MESSAGE_ROUTED1_0( | 1215 IPC_SYNC_MESSAGE_ROUTED1_0( |
1214 PpapiHostMsg_PPBTesting_SetMinimumArrayBufferSizeForShmem, | 1216 PpapiHostMsg_PPBTesting_SetMinimumArrayBufferSizeForShmem, |
1215 uint32_t /* threshold */) | 1217 uint32_t /* threshold */) |
1216 | 1218 |
1217 #if !defined(OS_NACL) && !defined(NACL_WIN64) | 1219 #if !defined(OS_NACL) && !defined(NACL_WIN64) |
1218 | 1220 |
1219 // PPB_VideoDecoder_Dev. | 1221 // PPB_VideoDecoder_Dev. |
(...skipping 1127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2347 std::vector<ppapi::HostResource> /* buffers */, | 2349 std::vector<ppapi::HostResource> /* buffers */, |
2348 uint32_t /* buffer_size */) | 2350 uint32_t /* buffer_size */) |
2349 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, | 2351 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, |
2350 uint32_t /* status */) | 2352 uint32_t /* status */) |
2351 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, | 2353 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, |
2352 uint32_t /* error */) | 2354 uint32_t /* error */) |
2353 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, | 2355 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, |
2354 uint32_t /* buffer */) | 2356 uint32_t /* buffer */) |
2355 | 2357 |
2356 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2358 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |