Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(397)

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 7623018: Move host resource from the proxy to the shared_impl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments addressed Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/proxy/plugin_resource_tracker_unittest.cc ('k') | ppapi/proxy/ppapi_param_traits.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 // PPB_Audio. 164 // PPB_Audio.
165 165
166 // Notifies the result of the audio stream create call. This is called in 166 // Notifies the result of the audio stream create call. This is called in
167 // both error cases and in the normal success case. These cases are 167 // both error cases and in the normal success case. These cases are
168 // differentiated by the result code, which is one of the standard PPAPI 168 // differentiated by the result code, which is one of the standard PPAPI
169 // result codes. 169 // result codes.
170 // 170 //
171 // The handler of this message should always close all of the handles passed 171 // The handler of this message should always close all of the handles passed
172 // in, since some could be valid even in the error case. 172 // in, since some could be valid even in the error case.
173 IPC_MESSAGE_ROUTED5(PpapiMsg_PPBAudio_NotifyAudioStreamCreated, 173 IPC_MESSAGE_ROUTED5(PpapiMsg_PPBAudio_NotifyAudioStreamCreated,
174 pp::proxy::HostResource /* audio_id */, 174 ppapi::HostResource /* audio_id */,
175 int32_t /* result_code (will be != PP_OK on failure) */, 175 int32_t /* result_code (will be != PP_OK on failure) */,
176 IPC::PlatformFileForTransit /* socket_handle */, 176 IPC::PlatformFileForTransit /* socket_handle */,
177 base::SharedMemoryHandle /* handle */, 177 base::SharedMemoryHandle /* handle */,
178 int32_t /* length */) 178 int32_t /* length */)
179 179
180 // PPB_Broker. 180 // PPB_Broker.
181 IPC_MESSAGE_ROUTED3( 181 IPC_MESSAGE_ROUTED3(
182 PpapiMsg_PPBBroker_ConnectComplete, 182 PpapiMsg_PPBBroker_ConnectComplete,
183 pp::proxy::HostResource /* broker */, 183 ppapi::HostResource /* broker */,
184 IPC::PlatformFileForTransit /* handle */, 184 IPC::PlatformFileForTransit /* handle */,
185 int32_t /* result */) 185 int32_t /* result */)
186 186
187 // PPB_FileChooser. 187 // PPB_FileChooser.
188 IPC_MESSAGE_ROUTED3( 188 IPC_MESSAGE_ROUTED3(
189 PpapiMsg_PPBFileChooser_ChooseComplete, 189 PpapiMsg_PPBFileChooser_ChooseComplete,
190 pp::proxy::HostResource /* chooser */, 190 ppapi::HostResource /* chooser */,
191 int32_t /* result_code (will be != PP_OK on failure */, 191 int32_t /* result_code (will be != PP_OK on failure */,
192 std::vector<pp::proxy::PPBFileRef_CreateInfo> /* chosen_files */) 192 std::vector<pp::proxy::PPBFileRef_CreateInfo> /* chosen_files */)
193 193
194 // PPB_FileSystem. 194 // PPB_FileSystem.
195 IPC_MESSAGE_ROUTED2( 195 IPC_MESSAGE_ROUTED2(
196 PpapiMsg_PPBFileSystem_OpenComplete, 196 PpapiMsg_PPBFileSystem_OpenComplete,
197 pp::proxy::HostResource /* filesystem */, 197 ppapi::HostResource /* filesystem */,
198 int32_t /* result */) 198 int32_t /* result */)
199 199
200 // PPB_Flash_NetConnector. 200 // PPB_Flash_NetConnector.
201 IPC_MESSAGE_ROUTED5(PpapiMsg_PPBFlashNetConnector_ConnectACK, 201 IPC_MESSAGE_ROUTED5(PpapiMsg_PPBFlashNetConnector_ConnectACK,
202 pp::proxy::HostResource /* net_connector */, 202 ppapi::HostResource /* net_connector */,
203 int32_t /* result */, 203 int32_t /* result */,
204 IPC::PlatformFileForTransit /* handle */, 204 IPC::PlatformFileForTransit /* handle */,
205 std::string /* local_addr_as_string */, 205 std::string /* local_addr_as_string */,
206 std::string /* remote_addr_as_string */) 206 std::string /* remote_addr_as_string */)
207 207
208 // PPB_Flash_TCPSocket. 208 // PPB_Flash_TCPSocket.
209 IPC_MESSAGE_ROUTED5(PpapiMsg_PPBFlashTCPSocket_ConnectACK, 209 IPC_MESSAGE_ROUTED5(PpapiMsg_PPBFlashTCPSocket_ConnectACK,
210 uint32 /* plugin_dispatcher_id */, 210 uint32 /* plugin_dispatcher_id */,
211 uint32 /* socket_id */, 211 uint32 /* socket_id */,
212 bool /* succeeded */, 212 bool /* succeeded */,
213 PP_Flash_NetAddress /* local_addr */, 213 PP_Flash_NetAddress /* local_addr */,
214 PP_Flash_NetAddress /* remote_addr */) 214 PP_Flash_NetAddress /* remote_addr */)
215 IPC_MESSAGE_ROUTED4(PpapiMsg_PPBFlashTCPSocket_ReadACK, 215 IPC_MESSAGE_ROUTED4(PpapiMsg_PPBFlashTCPSocket_ReadACK,
216 uint32 /* plugin_dispatcher_id */, 216 uint32 /* plugin_dispatcher_id */,
217 uint32 /* socket_id */, 217 uint32 /* socket_id */,
218 bool /* succeeded */, 218 bool /* succeeded */,
219 std::string /* data */) 219 std::string /* data */)
220 IPC_MESSAGE_ROUTED4(PpapiMsg_PPBFlashTCPSocket_WriteACK, 220 IPC_MESSAGE_ROUTED4(PpapiMsg_PPBFlashTCPSocket_WriteACK,
221 uint32 /* plugin_dispatcher_id */, 221 uint32 /* plugin_dispatcher_id */,
222 uint32 /* socket_id */, 222 uint32 /* socket_id */,
223 bool /* succeeded */, 223 bool /* succeeded */,
224 int32_t /* bytes_written */) 224 int32_t /* bytes_written */)
225 225
226 // PPB_Graphics2D. 226 // PPB_Graphics2D.
227 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBGraphics2D_FlushACK, 227 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBGraphics2D_FlushACK,
228 pp::proxy::HostResource /* graphics_2d */, 228 ppapi::HostResource /* graphics_2d */,
229 int32_t /* pp_error */) 229 int32_t /* pp_error */)
230 230
231 // PPB_Graphics3D. 231 // PPB_Graphics3D.
232 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBGraphics3D_SwapBuffersACK, 232 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBGraphics3D_SwapBuffersACK,
233 pp::proxy::HostResource /* graphics_3d */, 233 ppapi::HostResource /* graphics_3d */,
234 int32_t /* pp_error */) 234 int32_t /* pp_error */)
235 235
236 // PPB_Surface3D. 236 // PPB_Surface3D.
237 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBSurface3D_SwapBuffersACK, 237 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBSurface3D_SwapBuffersACK,
238 pp::proxy::HostResource /* surface_3d */, 238 ppapi::HostResource /* surface_3d */,
239 int32_t /* pp_error */) 239 int32_t /* pp_error */)
240 240
241 // PPP_Class. 241 // PPP_Class.
242 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiMsg_PPPClass_HasProperty, 242 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiMsg_PPPClass_HasProperty,
243 int64 /* ppp_class */, 243 int64 /* ppp_class */,
244 int64 /* object */, 244 int64 /* object */,
245 pp::proxy::SerializedVar /* property */, 245 pp::proxy::SerializedVar /* property */,
246 pp::proxy::SerializedVar /* out_exception */, 246 pp::proxy::SerializedVar /* out_exception */,
247 bool /* result */) 247 bool /* result */)
248 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiMsg_PPPClass_HasMethod, 248 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiMsg_PPPClass_HasMethod,
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 IPC_MESSAGE_ROUTED4(PpapiMsg_PPPInstance_DidChangeView, 314 IPC_MESSAGE_ROUTED4(PpapiMsg_PPPInstance_DidChangeView,
315 PP_Instance /* instance */, 315 PP_Instance /* instance */,
316 PP_Rect /* position */, 316 PP_Rect /* position */,
317 PP_Rect /* clip */, 317 PP_Rect /* clip */,
318 PP_Bool /* fullscreen */) 318 PP_Bool /* fullscreen */)
319 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPInstance_DidChangeFocus, 319 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPInstance_DidChangeFocus,
320 PP_Instance /* instance */, 320 PP_Instance /* instance */,
321 PP_Bool /* has_focus */) 321 PP_Bool /* has_focus */)
322 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPInstance_HandleDocumentLoad, 322 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPInstance_HandleDocumentLoad,
323 PP_Instance /* instance */, 323 PP_Instance /* instance */,
324 pp::proxy::HostResource /* url_loader */, 324 ppapi::HostResource /* url_loader */,
325 PP_Bool /* result */) 325 PP_Bool /* result */)
326 326
327 // PPP_Instance_Private. 327 // PPP_Instance_Private.
328 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiMsg_PPPInstancePrivate_GetInstanceObject, 328 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiMsg_PPPInstancePrivate_GetInstanceObject,
329 PP_Instance /* instance */, 329 PP_Instance /* instance */,
330 pp::proxy::SerializedVar /* result */) 330 pp::proxy::SerializedVar /* result */)
331 331
332 // PPP_Messaging. 332 // PPP_Messaging.
333 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPMessaging_HandleMessage, 333 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPMessaging_HandleMessage,
334 PP_Instance /* instance */, 334 PP_Instance /* instance */,
335 pp::proxy::SerializedVar /* message */) 335 pp::proxy::SerializedVar /* message */)
336 336
337 // PPB_URLLoader 337 // PPB_URLLoader
338 // (Messages from browser to plugin to notify it of changes in state.) 338 // (Messages from browser to plugin to notify it of changes in state.)
339 IPC_MESSAGE_ROUTED1(PpapiMsg_PPBURLLoader_UpdateProgress, 339 IPC_MESSAGE_ROUTED1(PpapiMsg_PPBURLLoader_UpdateProgress,
340 pp::proxy::PPBURLLoader_UpdateProgress_Params /* params */) 340 pp::proxy::PPBURLLoader_UpdateProgress_Params /* params */)
341 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBURLLoader_ReadResponseBody_Ack, 341 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBURLLoader_ReadResponseBody_Ack,
342 pp::proxy::HostResource /* loader */, 342 ppapi::HostResource /* loader */,
343 int32 /* result */, 343 int32 /* result */,
344 std::string /* data */) 344 std::string /* data */)
345 345
346 // PPP_VideoCapture_Dev 346 // PPP_VideoCapture_Dev
347 IPC_MESSAGE_ROUTED3( 347 IPC_MESSAGE_ROUTED3(
348 PpapiMsg_PPPVideoCapture_OnDeviceInfo, 348 PpapiMsg_PPPVideoCapture_OnDeviceInfo,
349 pp::proxy::HostResource /* video_capture */, 349 ppapi::HostResource /* video_capture */,
350 PP_VideoCaptureDeviceInfo_Dev /* info */, 350 PP_VideoCaptureDeviceInfo_Dev /* info */,
351 std::vector<pp::proxy::PPPVideoCapture_Buffer> /* buffers */) 351 std::vector<pp::proxy::PPPVideoCapture_Buffer> /* buffers */)
352 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoCapture_OnStatus, 352 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoCapture_OnStatus,
353 pp::proxy::HostResource /* video_capture */, 353 ppapi::HostResource /* video_capture */,
354 uint32_t /* status */) 354 uint32_t /* status */)
355 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoCapture_OnError, 355 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoCapture_OnError,
356 pp::proxy::HostResource /* video_capture */, 356 ppapi::HostResource /* video_capture */,
357 uint32_t /* error_code */) 357 uint32_t /* error_code */)
358 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoCapture_OnBufferReady, 358 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoCapture_OnBufferReady,
359 pp::proxy::HostResource /* video_capture */, 359 ppapi::HostResource /* video_capture */,
360 uint32_t /* buffer */) 360 uint32_t /* buffer */)
361 361
362 // PPB_VideoDecoder_Dev. 362 // PPB_VideoDecoder_Dev.
363 // (Messages from renderer to plugin to notify it to run callbacks.) 363 // (Messages from renderer to plugin to notify it to run callbacks.)
364 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBVideoDecoder_EndOfBitstreamACK, 364 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBVideoDecoder_EndOfBitstreamACK,
365 pp::proxy::HostResource /* video_decoder */, 365 ppapi::HostResource /* video_decoder */,
366 int32_t /* bitstream buffer id */, 366 int32_t /* bitstream buffer id */,
367 int32_t /* PP_CompletionCallback result */) 367 int32_t /* PP_CompletionCallback result */)
368 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBVideoDecoder_FlushACK, 368 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBVideoDecoder_FlushACK,
369 pp::proxy::HostResource /* video_decoder */, 369 ppapi::HostResource /* video_decoder */,
370 int32_t /* PP_CompletionCallback result */) 370 int32_t /* PP_CompletionCallback result */)
371 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBVideoDecoder_ResetACK, 371 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBVideoDecoder_ResetACK,
372 pp::proxy::HostResource /* video_decoder */, 372 ppapi::HostResource /* video_decoder */,
373 int32_t /* PP_CompletionCallback result */) 373 int32_t /* PP_CompletionCallback result */)
374 374
375 // PPP_VideoDecoder_Dev. 375 // PPP_VideoDecoder_Dev.
376 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPVideoDecoder_ProvidePictureBuffers, 376 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPVideoDecoder_ProvidePictureBuffers,
377 pp::proxy::HostResource /* video_decoder */, 377 ppapi::HostResource /* video_decoder */,
378 uint32_t /* requested number of buffers */, 378 uint32_t /* requested number of buffers */,
379 PP_Size /* dimensions of buffers */) 379 PP_Size /* dimensions of buffers */)
380 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_DismissPictureBuffer, 380 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_DismissPictureBuffer,
381 pp::proxy::HostResource /* video_decoder */, 381 ppapi::HostResource /* video_decoder */,
382 int32_t /* picture buffer id */) 382 int32_t /* picture buffer id */)
383 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_PictureReady, 383 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_PictureReady,
384 pp::proxy::HostResource /* video_decoder */, 384 ppapi::HostResource /* video_decoder */,
385 PP_Picture_Dev /* output picture */) 385 PP_Picture_Dev /* output picture */)
386 IPC_MESSAGE_ROUTED1(PpapiMsg_PPPVideoDecoder_NotifyEndOfStream, 386 IPC_MESSAGE_ROUTED1(PpapiMsg_PPPVideoDecoder_NotifyEndOfStream,
387 pp::proxy::HostResource /* video_decoder */) 387 ppapi::HostResource /* video_decoder */)
388 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_NotifyError, 388 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_NotifyError,
389 pp::proxy::HostResource /* video_decoder */, 389 ppapi::HostResource /* video_decoder */,
390 PP_VideoDecodeError_Dev /* error */) 390 PP_VideoDecodeError_Dev /* error */)
391 391
392 // ----------------------------------------------------------------------------- 392 // -----------------------------------------------------------------------------
393 // These are from the plugin to the renderer. 393 // These are from the plugin to the renderer.
394 394
395 // Reply to PpapiMsg_CreateChannel. The handle will be NULL if the channel 395 // Reply to PpapiMsg_CreateChannel. The handle will be NULL if the channel
396 // could not be established. This could be because the IPC could not be created 396 // could not be established. This could be because the IPC could not be created
397 // for some weird reason, but more likely that the plugin failed to load or 397 // for some weird reason, but more likely that the plugin failed to load or
398 // initialize properly. 398 // initialize properly.
399 IPC_MESSAGE_CONTROL1(PpapiHostMsg_ChannelCreated, 399 IPC_MESSAGE_CONTROL1(PpapiHostMsg_ChannelCreated,
400 IPC::ChannelHandle /* handle */) 400 IPC::ChannelHandle /* handle */)
401 401
402 // PPB_Audio. 402 // PPB_Audio.
403 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBAudio_Create, 403 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBAudio_Create,
404 PP_Instance /* instance_id */, 404 PP_Instance /* instance_id */,
405 int32_t /* sample_rate */, 405 int32_t /* sample_rate */,
406 uint32_t /* sample_frame_count */, 406 uint32_t /* sample_frame_count */,
407 pp::proxy::HostResource /* result */) 407 ppapi::HostResource /* result */)
408 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBAudio_StartOrStop, 408 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBAudio_StartOrStop,
409 pp::proxy::HostResource /* audio_id */, 409 ppapi::HostResource /* audio_id */,
410 bool /* play */) 410 bool /* play */)
411 411
412 // PPB_Broker. 412 // PPB_Broker.
413 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBBroker_Create, 413 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBBroker_Create,
414 PP_Instance /* instance */, 414 PP_Instance /* instance */,
415 pp::proxy::HostResource /* result_resource */) 415 ppapi::HostResource /* result_resource */)
416 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBBroker_Connect, 416 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBBroker_Connect,
417 pp::proxy::HostResource /* broker */) 417 ppapi::HostResource /* broker */)
418 418
419 // PPB_Buffer. 419 // PPB_Buffer.
420 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBBuffer_Create, 420 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBBuffer_Create,
421 PP_Instance /* instance */, 421 PP_Instance /* instance */,
422 uint32_t /* size */, 422 uint32_t /* size */,
423 pp::proxy::HostResource /* result_resource */, 423 ppapi::HostResource /* result_resource */,
424 base::SharedMemoryHandle /* result_shm_handle */) 424 base::SharedMemoryHandle /* result_shm_handle */)
425 425
426 // PPB_Console. 426 // PPB_Console.
427 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBConsole_Log, 427 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBConsole_Log,
428 PP_Instance /* instance */, 428 PP_Instance /* instance */,
429 int /* log_level */, 429 int /* log_level */,
430 pp::proxy::SerializedVar /* value */) 430 pp::proxy::SerializedVar /* value */)
431 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBConsole_LogWithSource, 431 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBConsole_LogWithSource,
432 PP_Instance /* instance */, 432 PP_Instance /* instance */,
433 int /* log_level */, 433 int /* log_level */,
434 pp::proxy::SerializedVar /* soruce */, 434 pp::proxy::SerializedVar /* soruce */,
435 pp::proxy::SerializedVar /* value */) 435 pp::proxy::SerializedVar /* value */)
436 436
437 // PPB_Context3D. 437 // PPB_Context3D.
438 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBContext3D_Create, 438 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBContext3D_Create,
439 PP_Instance /* instance */, 439 PP_Instance /* instance */,
440 int32_t /* config */, 440 int32_t /* config */,
441 std::vector<int32_t> /* attrib_list */, 441 std::vector<int32_t> /* attrib_list */,
442 pp::proxy::HostResource /* result */) 442 ppapi::HostResource /* result */)
443 443
444 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBContext3D_BindSurfaces, 444 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBContext3D_BindSurfaces,
445 pp::proxy::HostResource /* context */, 445 ppapi::HostResource /* context */,
446 pp::proxy::HostResource /* draw */, 446 ppapi::HostResource /* draw */,
447 pp::proxy::HostResource /* read */, 447 ppapi::HostResource /* read */,
448 int32_t /* result */) 448 int32_t /* result */)
449 449
450 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBContext3D_Initialize, 450 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBContext3D_Initialize,
451 pp::proxy::HostResource /* context */, 451 ppapi::HostResource /* context */,
452 int32 /* size */, 452 int32 /* size */,
453 base::SharedMemoryHandle /* ring_buffer */) 453 base::SharedMemoryHandle /* ring_buffer */)
454 454
455 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBContext3D_GetState, 455 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBContext3D_GetState,
456 pp::proxy::HostResource /* context */, 456 ppapi::HostResource /* context */,
457 gpu::CommandBuffer::State /* state */) 457 gpu::CommandBuffer::State /* state */)
458 458
459 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBContext3D_Flush, 459 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBContext3D_Flush,
460 pp::proxy::HostResource /* context */, 460 ppapi::HostResource /* context */,
461 int32 /* put_offset */, 461 int32 /* put_offset */,
462 int32 /* last_known_get */, 462 int32 /* last_known_get */,
463 gpu::CommandBuffer::State /* state */) 463 gpu::CommandBuffer::State /* state */)
464 464
465 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBContext3D_AsyncFlush, 465 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBContext3D_AsyncFlush,
466 pp::proxy::HostResource /* context */, 466 ppapi::HostResource /* context */,
467 int32 /* put_offset */) 467 int32 /* put_offset */)
468 468
469 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBContext3D_CreateTransferBuffer, 469 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBContext3D_CreateTransferBuffer,
470 pp::proxy::HostResource /* context */, 470 ppapi::HostResource /* context */,
471 int32 /* size */, 471 int32 /* size */,
472 int32 /* id */) 472 int32 /* id */)
473 473
474 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBContext3D_DestroyTransferBuffer, 474 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBContext3D_DestroyTransferBuffer,
475 pp::proxy::HostResource /* context */, 475 ppapi::HostResource /* context */,
476 int32 /* id */) 476 int32 /* id */)
477 477
478 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBContext3D_GetTransferBuffer, 478 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBContext3D_GetTransferBuffer,
479 pp::proxy::HostResource /* context */, 479 ppapi::HostResource /* context */,
480 int32 /* id */, 480 int32 /* id */,
481 base::SharedMemoryHandle /* transfer_buffer */, 481 base::SharedMemoryHandle /* transfer_buffer */,
482 uint32 /* size */) 482 uint32 /* size */)
483 483
484 // PPB_Core. 484 // PPB_Core.
485 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_AddRefResource, 485 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_AddRefResource,
486 pp::proxy::HostResource) 486 ppapi::HostResource)
487 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_ReleaseResource, 487 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_ReleaseResource,
488 pp::proxy::HostResource) 488 ppapi::HostResource)
489 489
490 // PPB_CharSet. 490 // PPB_CharSet.
491 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBCharSet_GetDefaultCharSet, 491 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBCharSet_GetDefaultCharSet,
492 PP_Instance /* instance */, 492 PP_Instance /* instance */,
493 pp::proxy::SerializedVar /* result */) 493 pp::proxy::SerializedVar /* result */)
494 494
495 // PPB_CursorControl. 495 // PPB_CursorControl.
496 IPC_SYNC_MESSAGE_ROUTED4_1(PpapiHostMsg_PPBCursorControl_SetCursor, 496 IPC_SYNC_MESSAGE_ROUTED4_1(PpapiHostMsg_PPBCursorControl_SetCursor,
497 PP_Instance /* instance */, 497 PP_Instance /* instance */,
498 int32_t /* type */, 498 int32_t /* type */,
499 pp::proxy::HostResource /* custom_image */, 499 ppapi::HostResource /* custom_image */,
500 PP_Point /* hot_spot */, 500 PP_Point /* hot_spot */,
501 PP_Bool /* result */) 501 PP_Bool /* result */)
502 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBCursorControl_LockCursor, 502 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBCursorControl_LockCursor,
503 PP_Instance /* instance */, 503 PP_Instance /* instance */,
504 PP_Bool /* result */) 504 PP_Bool /* result */)
505 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBCursorControl_UnlockCursor, 505 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBCursorControl_UnlockCursor,
506 PP_Instance /* instance */, 506 PP_Instance /* instance */,
507 PP_Bool /* result */) 507 PP_Bool /* result */)
508 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBCursorControl_HasCursorLock, 508 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBCursorControl_HasCursorLock,
509 PP_Instance /* instance */, 509 PP_Instance /* instance */,
510 PP_Bool /* result */) 510 PP_Bool /* result */)
511 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBCursorControl_CanLockCursor, 511 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBCursorControl_CanLockCursor,
512 PP_Instance /* instance */, 512 PP_Instance /* instance */,
513 PP_Bool /* result */) 513 PP_Bool /* result */)
514 514
515 // PPB_FileChooser. 515 // PPB_FileChooser.
516 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFileChooser_Create, 516 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFileChooser_Create,
517 PP_Instance /* instance */, 517 PP_Instance /* instance */,
518 int /* mode */, 518 int /* mode */,
519 std::string /* accept_mime_types */, 519 std::string /* accept_mime_types */,
520 pp::proxy::HostResource /* result */) 520 ppapi::HostResource /* result */)
521 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBFileChooser_Show, 521 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBFileChooser_Show,
522 pp::proxy::HostResource /* file_chooser */) 522 ppapi::HostResource /* file_chooser */)
523 523
524 524
525 // PPB_FileRef. 525 // PPB_FileRef.
526 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFileRef_Create, 526 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFileRef_Create,
527 pp::proxy::HostResource /* file_system */, 527 ppapi::HostResource /* file_system */,
528 std::string /* path */, 528 std::string /* path */,
529 pp::proxy::PPBFileRef_CreateInfo /* result */) 529 pp::proxy::PPBFileRef_CreateInfo /* result */)
530 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFileRef_GetParent, 530 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFileRef_GetParent,
531 pp::proxy::HostResource /* file_ref */, 531 ppapi::HostResource /* file_ref */,
532 pp::proxy::PPBFileRef_CreateInfo /* result */) 532 pp::proxy::PPBFileRef_CreateInfo /* result */)
533 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileRef_MakeDirectory, 533 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileRef_MakeDirectory,
534 pp::proxy::HostResource /* file_ref */, 534 ppapi::HostResource /* file_ref */,
535 PP_Bool /* make_ancestors */, 535 PP_Bool /* make_ancestors */,
536 uint32_t /* serialized_callback */) 536 uint32_t /* serialized_callback */)
537 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFileRef_Touch, 537 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFileRef_Touch,
538 pp::proxy::HostResource /* file_ref */, 538 ppapi::HostResource /* file_ref */,
539 PP_Time /* last_access */, 539 PP_Time /* last_access */,
540 PP_Time /* last_modified */, 540 PP_Time /* last_modified */,
541 uint32_t /* serialized_callback */) 541 uint32_t /* serialized_callback */)
542 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFileRef_Delete, 542 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFileRef_Delete,
543 pp::proxy::HostResource /* file_ref */, 543 ppapi::HostResource /* file_ref */,
544 uint32_t /* serialized_callback */) 544 uint32_t /* serialized_callback */)
545 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileRef_Rename, 545 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileRef_Rename,
546 pp::proxy::HostResource /* file_ref */, 546 ppapi::HostResource /* file_ref */,
547 pp::proxy::HostResource /* new_file_ref */, 547 ppapi::HostResource /* new_file_ref */,
548 uint32_t /* serialized_callback */) 548 uint32_t /* serialized_callback */)
549 549
550 // PPB_FileSystem. 550 // PPB_FileSystem.
551 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFileSystem_Create, 551 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFileSystem_Create,
552 PP_Instance /* instance */, 552 PP_Instance /* instance */,
553 int /* type */, 553 int /* type */,
554 pp::proxy::HostResource /* result */) 554 ppapi::HostResource /* result */)
555 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFileSystem_Open, 555 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFileSystem_Open,
556 pp::proxy::HostResource /* result */, 556 ppapi::HostResource /* result */,
557 int64_t /* expected_size */) 557 int64_t /* expected_size */)
558 558
559 // PPB_Flash. 559 // PPB_Flash.
560 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFlash_SetInstanceAlwaysOnTop, 560 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFlash_SetInstanceAlwaysOnTop,
561 PP_Instance /* instance */, 561 PP_Instance /* instance */,
562 PP_Bool /* on_top */) 562 PP_Bool /* on_top */)
563 // This has to be synchronous becuase the caller may want to composite on 563 // This has to be synchronous becuase the caller may want to composite on
564 // top of the resulting text after the call is complete. 564 // top of the resulting text after the call is complete.
565 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFlash_DrawGlyphs, 565 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFlash_DrawGlyphs,
566 pp::proxy::PPBFlash_DrawGlyphs_Params /* params */, 566 pp::proxy::PPBFlash_DrawGlyphs_Params /* params */,
567 PP_Bool /* result */) 567 PP_Bool /* result */)
568 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetProxyForURL, 568 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetProxyForURL,
569 PP_Instance /* instance */, 569 PP_Instance /* instance */,
570 std::string /* url */, 570 std::string /* url */,
571 pp::proxy::SerializedVar /* result */) 571 pp::proxy::SerializedVar /* result */)
572 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_Navigate, 572 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_Navigate,
573 pp::proxy::HostResource /* request_info */, 573 ppapi::HostResource /* request_info */,
574 std::string /* target */, 574 std::string /* target */,
575 bool /* from_user_action */, 575 bool /* from_user_action */,
576 int32_t /* result */) 576 int32_t /* result */)
577 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_RunMessageLoop, 577 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_RunMessageLoop,
578 PP_Instance /* instance */) 578 PP_Instance /* instance */)
579 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_QuitMessageLoop, 579 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_QuitMessageLoop,
580 PP_Instance /* instance */) 580 PP_Instance /* instance */)
581 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetLocalTimeZoneOffset, 581 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetLocalTimeZoneOffset,
582 PP_Instance /* instance */, 582 PP_Instance /* instance */,
583 PP_Time /* t */, 583 PP_Time /* t */,
584 double /* offset */) 584 double /* offset */)
585 585
586 // PPB_Flash_Clipboard. 586 // PPB_Flash_Clipboard.
587 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_IsFormatAvailable, 587 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_IsFormatAvailable,
588 PP_Instance /* instance */, 588 PP_Instance /* instance */,
589 int /* clipboard_type */, 589 int /* clipboard_type */,
590 int /* format */, 590 int /* format */,
591 bool /* result */) 591 bool /* result */)
592 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashClipboard_ReadPlainText, 592 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashClipboard_ReadPlainText,
593 PP_Instance /* instance */, 593 PP_Instance /* instance */,
594 int /* clipboard_type */, 594 int /* clipboard_type */,
595 pp::proxy::SerializedVar /* result */) 595 pp::proxy::SerializedVar /* result */)
596 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashClipboard_WritePlainText, 596 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashClipboard_WritePlainText,
597 PP_Instance /* instance */, 597 PP_Instance /* instance */,
598 int /* clipboard_type */, 598 int /* clipboard_type */,
599 pp::proxy::SerializedVar /* text */) 599 pp::proxy::SerializedVar /* text */)
600 600
601 // PPB_Flash_File_FileRef. 601 // PPB_Flash_File_FileRef.
602 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_FileRef_OpenFile, 602 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_FileRef_OpenFile,
603 pp::proxy::HostResource /* file_ref */, 603 ppapi::HostResource /* file_ref */,
604 int32_t /* mode */, 604 int32_t /* mode */,
605 IPC::PlatformFileForTransit /* file_handle */, 605 IPC::PlatformFileForTransit /* file_handle */,
606 int32_t /* result */) 606 int32_t /* result */)
607 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlashFile_FileRef_QueryFile, 607 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlashFile_FileRef_QueryFile,
608 pp::proxy::HostResource /* file_ref */, 608 ppapi::HostResource /* file_ref */,
609 PP_FileInfo /* info */, 609 PP_FileInfo /* info */,
610 int32_t /* result */) 610 int32_t /* result */)
611 611
612 // PPB_Flash_File_ModuleLocal. 612 // PPB_Flash_File_ModuleLocal.
613 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBFlashFile_ModuleLocal_OpenFile, 613 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBFlashFile_ModuleLocal_OpenFile,
614 PP_Instance /* instance */, 614 PP_Instance /* instance */,
615 std::string /* path */, 615 std::string /* path */,
616 int32_t /* mode */, 616 int32_t /* mode */,
617 IPC::PlatformFileForTransit /* file_handle */, 617 IPC::PlatformFileForTransit /* file_handle */,
618 int32_t /* result */) 618 int32_t /* result */)
(...skipping 21 matching lines...) Expand all
640 PpapiHostMsg_PPBFlashFile_ModuleLocal_GetDirContents, 640 PpapiHostMsg_PPBFlashFile_ModuleLocal_GetDirContents,
641 PP_Instance /* instance */, 641 PP_Instance /* instance */,
642 std::string /* path */, 642 std::string /* path */,
643 std::vector<pp::proxy::SerializedDirEntry> /* entries */, 643 std::vector<pp::proxy::SerializedDirEntry> /* entries */,
644 int32_t /* result */) 644 int32_t /* result */)
645 645
646 // PPB_Flash_Menu 646 // PPB_Flash_Menu
647 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashMenu_Create, 647 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashMenu_Create,
648 PP_Instance /* instance */, 648 PP_Instance /* instance */,
649 pp::proxy::SerializedFlashMenu /* menu_data */, 649 pp::proxy::SerializedFlashMenu /* menu_data */,
650 pp::proxy::HostResource /* result */) 650 ppapi::HostResource /* result */)
651 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBFlashMenu_Show, 651 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBFlashMenu_Show,
652 pp::proxy::HostResource /* menu */, 652 ppapi::HostResource /* menu */,
653 PP_Point /* location */) 653 PP_Point /* location */)
654 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBFlashMenu_ShowACK, 654 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBFlashMenu_ShowACK,
655 pp::proxy::HostResource /* menu */, 655 ppapi::HostResource /* menu */,
656 int32_t /* selected_id */, 656 int32_t /* selected_id */,
657 int32_t /* result */) 657 int32_t /* result */)
658 658
659 // PPB_Flash_NetConnector. 659 // PPB_Flash_NetConnector.
660 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFlashNetConnector_Create, 660 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFlashNetConnector_Create,
661 PP_Instance /* instance_id */, 661 PP_Instance /* instance_id */,
662 pp::proxy::HostResource /* result */) 662 ppapi::HostResource /* result */)
663 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashNetConnector_ConnectTcp, 663 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashNetConnector_ConnectTcp,
664 pp::proxy::HostResource /* connector */, 664 ppapi::HostResource /* connector */,
665 std::string /* host */, 665 std::string /* host */,
666 uint16_t /* port */) 666 uint16_t /* port */)
667 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFlashNetConnector_ConnectTcpAddress, 667 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFlashNetConnector_ConnectTcpAddress,
668 pp::proxy::HostResource /* connector */, 668 ppapi::HostResource /* connector */,
669 std::string /* net_address_as_string */) 669 std::string /* net_address_as_string */)
670 670
671 // PPB_Flash_TCPSocket. 671 // PPB_Flash_TCPSocket.
672 IPC_SYNC_MESSAGE_CONTROL2_1(PpapiHostMsg_PPBFlashTCPSocket_Create, 672 IPC_SYNC_MESSAGE_CONTROL2_1(PpapiHostMsg_PPBFlashTCPSocket_Create,
673 int32 /* routing_id */, 673 int32 /* routing_id */,
674 uint32 /* plugin_dispatcher_id */, 674 uint32 /* plugin_dispatcher_id */,
675 uint32 /* socket_id */) 675 uint32 /* socket_id */)
676 IPC_MESSAGE_CONTROL3(PpapiHostMsg_PPBFlashTCPSocket_Connect, 676 IPC_MESSAGE_CONTROL3(PpapiHostMsg_PPBFlashTCPSocket_Connect,
677 uint32 /* socket_id */, 677 uint32 /* socket_id */,
678 std::string /* host */, 678 std::string /* host */,
679 uint16_t /* port */) 679 uint16_t /* port */)
680 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBFlashTCPSocket_ConnectWithNetAddress, 680 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBFlashTCPSocket_ConnectWithNetAddress,
681 uint32 /* socket_id */, 681 uint32 /* socket_id */,
682 PP_Flash_NetAddress /* net_addr */) 682 PP_Flash_NetAddress /* net_addr */)
683 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBFlashTCPSocket_Read, 683 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBFlashTCPSocket_Read,
684 uint32 /* socket_id */, 684 uint32 /* socket_id */,
685 int32_t /* bytes_to_read */) 685 int32_t /* bytes_to_read */)
686 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBFlashTCPSocket_Write, 686 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBFlashTCPSocket_Write,
687 uint32 /* socket_id */, 687 uint32 /* socket_id */,
688 std::string /* data */) 688 std::string /* data */)
689 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBFlashTCPSocket_Disconnect, 689 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBFlashTCPSocket_Disconnect,
690 uint32 /* socket_id */) 690 uint32 /* socket_id */)
691 691
692 // PPB_Font. 692 // PPB_Font.
693 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, 693 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies,
694 std::string /* result */) 694 std::string /* result */)
695 695
696 // PPB_Graphics2D. 696 // PPB_Graphics2D.
697 IPC_MESSAGE_ROUTED5(PpapiHostMsg_PPBGraphics2D_PaintImageData, 697 IPC_MESSAGE_ROUTED5(PpapiHostMsg_PPBGraphics2D_PaintImageData,
698 pp::proxy::HostResource /* graphics_2d */, 698 ppapi::HostResource /* graphics_2d */,
699 pp::proxy::HostResource /* image_data */, 699 ppapi::HostResource /* image_data */,
700 PP_Point /* top_left */, 700 PP_Point /* top_left */,
701 bool /* src_rect_specified */, 701 bool /* src_rect_specified */,
702 PP_Rect /* src_rect */) 702 PP_Rect /* src_rect */)
703 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBGraphics2D_Scroll, 703 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBGraphics2D_Scroll,
704 pp::proxy::HostResource /* graphics_2d */, 704 ppapi::HostResource /* graphics_2d */,
705 bool /* clip_specified */, 705 bool /* clip_specified */,
706 PP_Rect /* clip */, 706 PP_Rect /* clip */,
707 PP_Point /* amount */) 707 PP_Point /* amount */)
708 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics2D_ReplaceContents, 708 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics2D_ReplaceContents,
709 pp::proxy::HostResource /* graphics_2d */, 709 ppapi::HostResource /* graphics_2d */,
710 pp::proxy::HostResource /* image_data */) 710 ppapi::HostResource /* image_data */)
711 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics2D_Flush, 711 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics2D_Flush,
712 pp::proxy::HostResource /* graphics_2d */) 712 ppapi::HostResource /* graphics_2d */)
713 713
714 // PPB_Graphics3D. 714 // PPB_Graphics3D.
715 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics3D_Create, 715 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics3D_Create,
716 PP_Instance /* instance */, 716 PP_Instance /* instance */,
717 int32_t /* config */, 717 int32_t /* config */,
718 std::vector<int32_t> /* attrib_list */, 718 std::vector<int32_t> /* attrib_list */,
719 pp::proxy::HostResource /* result */) 719 ppapi::HostResource /* result */)
720 720
721 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_InitCommandBuffer, 721 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_InitCommandBuffer,
722 pp::proxy::HostResource /* context */, 722 ppapi::HostResource /* context */,
723 int32 /* size */, 723 int32 /* size */,
724 base::SharedMemoryHandle /* ring_buffer */) 724 base::SharedMemoryHandle /* ring_buffer */)
725 725
726 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_GetState, 726 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_GetState,
727 pp::proxy::HostResource /* context */, 727 ppapi::HostResource /* context */,
728 gpu::CommandBuffer::State /* state */) 728 gpu::CommandBuffer::State /* state */)
729 729
730 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics3D_Flush, 730 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics3D_Flush,
731 pp::proxy::HostResource /* context */, 731 ppapi::HostResource /* context */,
732 int32 /* put_offset */, 732 int32 /* put_offset */,
733 int32 /* last_known_get */, 733 int32 /* last_known_get */,
734 gpu::CommandBuffer::State /* state */) 734 gpu::CommandBuffer::State /* state */)
735 735
736 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_AsyncFlush, 736 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_AsyncFlush,
737 pp::proxy::HostResource /* context */, 737 ppapi::HostResource /* context */,
738 int32 /* put_offset */) 738 int32 /* put_offset */)
739 739
740 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_CreateTransferBuffer, 740 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_CreateTransferBuffer,
741 pp::proxy::HostResource /* context */, 741 ppapi::HostResource /* context */,
742 int32 /* size */, 742 int32 /* size */,
743 int32 /* id */) 743 int32 /* id */)
744 744
745 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer, 745 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer,
746 pp::proxy::HostResource /* context */, 746 ppapi::HostResource /* context */,
747 int32 /* id */) 747 int32 /* id */)
748 748
749 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBGraphics3D_GetTransferBuffer, 749 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBGraphics3D_GetTransferBuffer,
750 pp::proxy::HostResource /* context */, 750 ppapi::HostResource /* context */,
751 int32 /* id */, 751 int32 /* id */,
752 base::SharedMemoryHandle /* transfer_buffer */, 752 base::SharedMemoryHandle /* transfer_buffer */,
753 uint32 /* size */) 753 uint32 /* size */)
754 754
755 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers, 755 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers,
756 pp::proxy::HostResource /* graphics_3d */) 756 ppapi::HostResource /* graphics_3d */)
757 757
758 // PPB_Instance. 758 // PPB_Instance.
759 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetWindowObject, 759 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetWindowObject,
760 PP_Instance /* instance */, 760 PP_Instance /* instance */,
761 pp::proxy::SerializedVar /* result */) 761 pp::proxy::SerializedVar /* result */)
762 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetOwnerElementObject, 762 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetOwnerElementObject,
763 PP_Instance /* instance */, 763 PP_Instance /* instance */,
764 pp::proxy::SerializedVar /* result */) 764 pp::proxy::SerializedVar /* result */)
765 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_BindGraphics, 765 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_BindGraphics,
766 PP_Instance /* instance */, 766 PP_Instance /* instance */,
767 pp::proxy::HostResource /* device */, 767 ppapi::HostResource /* device */,
768 PP_Bool /* result */) 768 PP_Bool /* result */)
769 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_IsFullFrame, 769 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_IsFullFrame,
770 PP_Instance /* instance */, 770 PP_Instance /* instance */,
771 PP_Bool /* result */) 771 PP_Bool /* result */)
772 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBInstance_ExecuteScript, 772 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBInstance_ExecuteScript,
773 PP_Instance /* instance */, 773 PP_Instance /* instance */,
774 pp::proxy::SerializedVar /* script */, 774 pp::proxy::SerializedVar /* script */,
775 pp::proxy::SerializedVar /* out_exception */, 775 pp::proxy::SerializedVar /* out_exception */,
776 pp::proxy::SerializedVar /* result */) 776 pp::proxy::SerializedVar /* result */)
777 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_SetFullscreen, 777 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_SetFullscreen,
(...skipping 13 matching lines...) Expand all
791 uint32_t /* event_classes */) 791 uint32_t /* event_classes */)
792 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_PostMessage, 792 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_PostMessage,
793 PP_Instance /* instance */, 793 PP_Instance /* instance */,
794 pp::proxy::SerializedVar /* message */) 794 pp::proxy::SerializedVar /* message */)
795 795
796 IPC_SYNC_MESSAGE_ROUTED3_1( 796 IPC_SYNC_MESSAGE_ROUTED3_1(
797 PpapiHostMsg_PPBPDF_GetFontFileWithFallback, 797 PpapiHostMsg_PPBPDF_GetFontFileWithFallback,
798 PP_Instance /* instance */, 798 PP_Instance /* instance */,
799 pp::proxy::SerializedFontDescription /* description */, 799 pp::proxy::SerializedFontDescription /* description */,
800 int32_t /* charset */, 800 int32_t /* charset */,
801 pp::proxy::HostResource /* result */) 801 ppapi::HostResource /* result */)
802 IPC_SYNC_MESSAGE_ROUTED2_1( 802 IPC_SYNC_MESSAGE_ROUTED2_1(
803 PpapiHostMsg_PPBPDF_GetFontTableForPrivateFontFile, 803 PpapiHostMsg_PPBPDF_GetFontTableForPrivateFontFile,
804 pp::proxy::HostResource /* font_file */, 804 ppapi::HostResource /* font_file */,
805 uint32_t /* table */, 805 uint32_t /* table */,
806 std::string /* result */) 806 std::string /* result */)
807 807
808 // PPB_Surface3D. 808 // PPB_Surface3D.
809 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBSurface3D_Create, 809 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBSurface3D_Create,
810 PP_Instance /* instance */, 810 PP_Instance /* instance */,
811 int32_t /* config */, 811 int32_t /* config */,
812 std::vector<int32_t> /* attrib_list */, 812 std::vector<int32_t> /* attrib_list */,
813 pp::proxy::HostResource /* result */) 813 ppapi::HostResource /* result */)
814 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBSurface3D_SwapBuffers, 814 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBSurface3D_SwapBuffers,
815 pp::proxy::HostResource /* surface_3d */) 815 ppapi::HostResource /* surface_3d */)
816 816
817 // PPB_Testing. 817 // PPB_Testing.
818 IPC_SYNC_MESSAGE_ROUTED3_1( 818 IPC_SYNC_MESSAGE_ROUTED3_1(
819 PpapiHostMsg_PPBTesting_ReadImageData, 819 PpapiHostMsg_PPBTesting_ReadImageData,
820 pp::proxy::HostResource /* device_context_2d */, 820 ppapi::HostResource /* device_context_2d */,
821 pp::proxy::HostResource /* image */, 821 ppapi::HostResource /* image */,
822 PP_Point /* top_left */, 822 PP_Point /* top_left */,
823 PP_Bool /* result */) 823 PP_Bool /* result */)
824 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance, 824 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance,
825 PP_Instance /* instance */, 825 PP_Instance /* instance */,
826 uint32 /* result */) 826 uint32 /* result */)
827 827
828 // PPB_URLLoader. 828 // PPB_URLLoader.
829 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLLoader_Create, 829 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLLoader_Create,
830 PP_Instance /* instance */, 830 PP_Instance /* instance */,
831 pp::proxy::HostResource /* result */) 831 ppapi::HostResource /* result */)
832 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBURLLoader_Open, 832 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBURLLoader_Open,
833 pp::proxy::HostResource /* loader */, 833 ppapi::HostResource /* loader */,
834 pp::proxy::HostResource /*request_info */, 834 ppapi::HostResource /*request_info */,
835 uint32_t /* serialized_callback */) 835 uint32_t /* serialized_callback */)
836 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBURLLoader_FollowRedirect, 836 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBURLLoader_FollowRedirect,
837 pp::proxy::HostResource /* loader */, 837 ppapi::HostResource /* loader */,
838 uint32_t /* serialized_callback */) 838 uint32_t /* serialized_callback */)
839 IPC_SYNC_MESSAGE_ROUTED1_1( 839 IPC_SYNC_MESSAGE_ROUTED1_1(
840 PpapiHostMsg_PPBURLLoader_GetResponseInfo, 840 PpapiHostMsg_PPBURLLoader_GetResponseInfo,
841 pp::proxy::HostResource /* loader */, 841 ppapi::HostResource /* loader */,
842 pp::proxy::HostResource /* response_info_out */) 842 ppapi::HostResource /* response_info_out */)
843 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBURLLoader_ReadResponseBody, 843 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBURLLoader_ReadResponseBody,
844 pp::proxy::HostResource /* loader */, 844 ppapi::HostResource /* loader */,
845 int32_t /* bytes_to_read */) 845 int32_t /* bytes_to_read */)
846 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBURLLoader_FinishStreamingToFile, 846 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBURLLoader_FinishStreamingToFile,
847 pp::proxy::HostResource /* loader */, 847 ppapi::HostResource /* loader */,
848 uint32_t /* serialized_callback */) 848 uint32_t /* serialized_callback */)
849 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBURLLoader_Close, 849 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBURLLoader_Close,
850 pp::proxy::HostResource /* loader */) 850 ppapi::HostResource /* loader */)
851 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBURLLoader_GrantUniversalAccess, 851 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBURLLoader_GrantUniversalAccess,
852 pp::proxy::HostResource /* loader */) 852 ppapi::HostResource /* loader */)
853 853
854 // PPB_URLRequestInfo. 854 // PPB_URLRequestInfo.
855 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLRequestInfo_Create, 855 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLRequestInfo_Create,
856 PP_Instance /* instance */, 856 PP_Instance /* instance */,
857 pp::proxy::HostResource /* result */) 857 ppapi::HostResource /* result */)
858 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBURLRequestInfo_SetProperty, 858 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBURLRequestInfo_SetProperty,
859 pp::proxy::HostResource /* request */, 859 ppapi::HostResource /* request */,
860 int32_t /* property */, 860 int32_t /* property */,
861 pp::proxy::SerializedVar /* value */) 861 pp::proxy::SerializedVar /* value */)
862 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBURLRequestInfo_AppendDataToBody, 862 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBURLRequestInfo_AppendDataToBody,
863 pp::proxy::HostResource /* request */, 863 ppapi::HostResource /* request */,
864 std::string /* data */) 864 std::string /* data */)
865 IPC_MESSAGE_ROUTED5(PpapiHostMsg_PPBURLRequestInfo_AppendFileToBody, 865 IPC_MESSAGE_ROUTED5(PpapiHostMsg_PPBURLRequestInfo_AppendFileToBody,
866 pp::proxy::HostResource /* request */, 866 ppapi::HostResource /* request */,
867 pp::proxy::HostResource /* file_ref */, 867 ppapi::HostResource /* file_ref */,
868 int64_t /* start_offset */, 868 int64_t /* start_offset */,
869 int64_t /* number_of_bytes */, 869 int64_t /* number_of_bytes */,
870 double /* expected_last_modified_time */) 870 double /* expected_last_modified_time */)
871 871
872 // PPB_URLResponseInfo. 872 // PPB_URLResponseInfo.
873 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBURLResponseInfo_GetProperty, 873 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBURLResponseInfo_GetProperty,
874 pp::proxy::HostResource /* response */, 874 ppapi::HostResource /* response */,
875 int32_t /* property */, 875 int32_t /* property */,
876 pp::proxy::SerializedVar /* result */) 876 pp::proxy::SerializedVar /* result */)
877 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLResponseInfo_GetBodyAsFileRef, 877 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLResponseInfo_GetBodyAsFileRef,
878 pp::proxy::HostResource /* response */, 878 ppapi::HostResource /* response */,
879 pp::proxy::PPBFileRef_CreateInfo /* result */) 879 pp::proxy::PPBFileRef_CreateInfo /* result */)
880 880
881 // PPB_URLUtil. 881 // PPB_URLUtil.
882 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBURLUtil_ResolveRelativeToDocument, 882 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBURLUtil_ResolveRelativeToDocument,
883 PP_Instance /* instance */, 883 PP_Instance /* instance */,
884 pp::proxy::SerializedVar /* relative */, 884 pp::proxy::SerializedVar /* relative */,
885 pp::proxy::SerializedVar /* result */) 885 pp::proxy::SerializedVar /* result */)
886 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBURLUtil_DocumentCanRequest, 886 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBURLUtil_DocumentCanRequest,
887 PP_Instance /* instance */, 887 PP_Instance /* instance */,
888 pp::proxy::SerializedVar /* relative */, 888 pp::proxy::SerializedVar /* relative */,
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
958 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, 958 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated,
959 PP_Instance /* instance */, 959 PP_Instance /* instance */,
960 int64 /* object_class */, 960 int64 /* object_class */,
961 int64 /* object_data */, 961 int64 /* object_data */,
962 pp::proxy::SerializedVar /* result */) 962 pp::proxy::SerializedVar /* result */)
963 963
964 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_ResourceCreation_Graphics2D, 964 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_ResourceCreation_Graphics2D,
965 PP_Instance /* instance */, 965 PP_Instance /* instance */,
966 PP_Size /* size */, 966 PP_Size /* size */,
967 PP_Bool /* is_always_opaque */, 967 PP_Bool /* is_always_opaque */,
968 pp::proxy::HostResource /* result */) 968 ppapi::HostResource /* result */)
969 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_ResourceCreation_ImageData, 969 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_ResourceCreation_ImageData,
970 PP_Instance /* instance */, 970 PP_Instance /* instance */,
971 int32 /* format */, 971 int32 /* format */,
972 PP_Size /* size */, 972 PP_Size /* size */,
973 PP_Bool /* init_to_zero */, 973 PP_Bool /* init_to_zero */,
974 pp::proxy::HostResource /* result_resource */, 974 ppapi::HostResource /* result_resource */,
975 std::string /* image_data_desc */, 975 std::string /* image_data_desc */,
976 pp::proxy::ImageHandle /* result */) 976 pp::proxy::ImageHandle /* result */)
977 977
978 // PPB_VideoCapture_Dev. 978 // PPB_VideoCapture_Dev.
979 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBVideoCapture_Create, 979 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBVideoCapture_Create,
980 PP_Instance /* instance */, 980 PP_Instance /* instance */,
981 pp::proxy::HostResource /* result */) 981 ppapi::HostResource /* result */)
982 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBVideoCapture_StartCapture, 982 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBVideoCapture_StartCapture,
983 pp::proxy::HostResource /* video_capture */, 983 ppapi::HostResource /* video_capture */,
984 PP_VideoCaptureDeviceInfo_Dev /* requested_info */, 984 PP_VideoCaptureDeviceInfo_Dev /* requested_info */,
985 uint32_t /* buffer_count */) 985 uint32_t /* buffer_count */)
986 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoCapture_ReuseBuffer, 986 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoCapture_ReuseBuffer,
987 pp::proxy::HostResource /* video_capture */, 987 ppapi::HostResource /* video_capture */,
988 uint32_t /* buffer */) 988 uint32_t /* buffer */)
989 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoCapture_StopCapture, 989 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoCapture_StopCapture,
990 pp::proxy::HostResource /* video_capture */) 990 ppapi::HostResource /* video_capture */)
991 991
992 // PPB_VideoDecoder. 992 // PPB_VideoDecoder.
993 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVideoDecoder_Create, 993 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVideoDecoder_Create,
994 PP_Instance /* instance */, 994 PP_Instance /* instance */,
995 pp::proxy::HostResource /* context */, 995 ppapi::HostResource /* context */,
996 std::vector<PP_VideoConfigElement> /* config */, 996 std::vector<PP_VideoConfigElement> /* config */,
997 pp::proxy::HostResource /* result */) 997 ppapi::HostResource /* result */)
998 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBVideoDecoder_Decode, 998 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBVideoDecoder_Decode,
999 pp::proxy::HostResource /* video_decoder */, 999 ppapi::HostResource /* video_decoder */,
1000 pp::proxy::HostResource /* bitstream buffer */, 1000 ppapi::HostResource /* bitstream buffer */,
1001 int32 /* bitstream buffer id */, 1001 int32 /* bitstream buffer id */,
1002 int32 /* size of buffer */) 1002 int32 /* size of buffer */)
1003 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_AssignPictureBuffers, 1003 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_AssignPictureBuffers,
1004 pp::proxy::HostResource /* video_decoder */, 1004 ppapi::HostResource /* video_decoder */,
1005 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) 1005 std::vector<PP_PictureBuffer_Dev> /* picture buffers */)
1006 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, 1006 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer,
1007 pp::proxy::HostResource /* video_decoder */, 1007 ppapi::HostResource /* video_decoder */,
1008 int32_t /* picture buffer id */) 1008 int32_t /* picture buffer id */)
1009 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, 1009 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush,
1010 pp::proxy::HostResource /* video_decoder */) 1010 ppapi::HostResource /* video_decoder */)
1011 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, 1011 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset,
1012 pp::proxy::HostResource /* video_decoder */) 1012 ppapi::HostResource /* video_decoder */)
1013 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, 1013 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy,
1014 pp::proxy::HostResource /* video_decoder */) 1014 ppapi::HostResource /* video_decoder */)
OLDNEW
« no previous file with comments | « ppapi/proxy/plugin_resource_tracker_unittest.cc ('k') | ppapi/proxy/ppapi_param_traits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698