| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 IPC_STRUCT_TRAITS_MEMBER(picture_buffer_id) | 71 IPC_STRUCT_TRAITS_MEMBER(picture_buffer_id) |
| 72 IPC_STRUCT_TRAITS_MEMBER(bitstream_buffer_id) | 72 IPC_STRUCT_TRAITS_MEMBER(bitstream_buffer_id) |
| 73 IPC_STRUCT_TRAITS_END() | 73 IPC_STRUCT_TRAITS_END() |
| 74 | 74 |
| 75 IPC_STRUCT_TRAITS_BEGIN(PP_VideoCaptureDeviceInfo_Dev) | 75 IPC_STRUCT_TRAITS_BEGIN(PP_VideoCaptureDeviceInfo_Dev) |
| 76 IPC_STRUCT_TRAITS_MEMBER(width) | 76 IPC_STRUCT_TRAITS_MEMBER(width) |
| 77 IPC_STRUCT_TRAITS_MEMBER(height) | 77 IPC_STRUCT_TRAITS_MEMBER(height) |
| 78 IPC_STRUCT_TRAITS_MEMBER(frames_per_second) | 78 IPC_STRUCT_TRAITS_MEMBER(frames_per_second) |
| 79 IPC_STRUCT_TRAITS_END() | 79 IPC_STRUCT_TRAITS_END() |
| 80 | 80 |
| 81 IPC_STRUCT_TRAITS_BEGIN(pp::proxy::PPPVideoCapture_Buffer) | 81 IPC_STRUCT_TRAITS_BEGIN(ppapi::proxy::PPPVideoCapture_Buffer) |
| 82 IPC_STRUCT_TRAITS_MEMBER(resource) | 82 IPC_STRUCT_TRAITS_MEMBER(resource) |
| 83 IPC_STRUCT_TRAITS_MEMBER(handle) | 83 IPC_STRUCT_TRAITS_MEMBER(handle) |
| 84 IPC_STRUCT_TRAITS_MEMBER(size) | 84 IPC_STRUCT_TRAITS_MEMBER(size) |
| 85 IPC_STRUCT_TRAITS_END() | 85 IPC_STRUCT_TRAITS_END() |
| 86 | 86 |
| 87 IPC_STRUCT_TRAITS_BEGIN(::ppapi::Preferences) | 87 IPC_STRUCT_TRAITS_BEGIN(ppapi::Preferences) |
| 88 IPC_STRUCT_TRAITS_MEMBER(standard_font_family) | 88 IPC_STRUCT_TRAITS_MEMBER(standard_font_family) |
| 89 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family) | 89 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family) |
| 90 IPC_STRUCT_TRAITS_MEMBER(serif_font_family) | 90 IPC_STRUCT_TRAITS_MEMBER(serif_font_family) |
| 91 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family) | 91 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family) |
| 92 IPC_STRUCT_TRAITS_MEMBER(default_font_size) | 92 IPC_STRUCT_TRAITS_MEMBER(default_font_size) |
| 93 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) | 93 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) |
| 94 IPC_STRUCT_TRAITS_END() | 94 IPC_STRUCT_TRAITS_END() |
| 95 | 95 |
| 96 IPC_STRUCT_TRAITS_BEGIN(::ppapi::InputEventData) | 96 IPC_STRUCT_TRAITS_BEGIN(ppapi::InputEventData) |
| 97 IPC_STRUCT_TRAITS_MEMBER(is_filtered) | 97 IPC_STRUCT_TRAITS_MEMBER(is_filtered) |
| 98 IPC_STRUCT_TRAITS_MEMBER(event_type) | 98 IPC_STRUCT_TRAITS_MEMBER(event_type) |
| 99 IPC_STRUCT_TRAITS_MEMBER(event_time_stamp) | 99 IPC_STRUCT_TRAITS_MEMBER(event_time_stamp) |
| 100 IPC_STRUCT_TRAITS_MEMBER(event_modifiers) | 100 IPC_STRUCT_TRAITS_MEMBER(event_modifiers) |
| 101 IPC_STRUCT_TRAITS_MEMBER(mouse_button) | 101 IPC_STRUCT_TRAITS_MEMBER(mouse_button) |
| 102 IPC_STRUCT_TRAITS_MEMBER(mouse_position) | 102 IPC_STRUCT_TRAITS_MEMBER(mouse_position) |
| 103 IPC_STRUCT_TRAITS_MEMBER(mouse_click_count) | 103 IPC_STRUCT_TRAITS_MEMBER(mouse_click_count) |
| 104 IPC_STRUCT_TRAITS_MEMBER(wheel_delta) | 104 IPC_STRUCT_TRAITS_MEMBER(wheel_delta) |
| 105 IPC_STRUCT_TRAITS_MEMBER(wheel_ticks) | 105 IPC_STRUCT_TRAITS_MEMBER(wheel_ticks) |
| 106 IPC_STRUCT_TRAITS_MEMBER(wheel_scroll_by_page) | 106 IPC_STRUCT_TRAITS_MEMBER(wheel_scroll_by_page) |
| (...skipping 24 matching lines...) Expand all Loading... |
| 131 // instance), and set usable as true. | 131 // instance), and set usable as true. |
| 132 // | 132 // |
| 133 // If the plugin has already seen the instance ID, it will set usable as false | 133 // If the plugin has already seen the instance ID, it will set usable as false |
| 134 // and the renderer must retry a new instance ID. | 134 // and the renderer must retry a new instance ID. |
| 135 IPC_SYNC_MESSAGE_CONTROL1_1(PpapiMsg_ReserveInstanceId, | 135 IPC_SYNC_MESSAGE_CONTROL1_1(PpapiMsg_ReserveInstanceId, |
| 136 PP_Instance /* instance */, | 136 PP_Instance /* instance */, |
| 137 bool /* usable */) | 137 bool /* usable */) |
| 138 | 138 |
| 139 // Passes the WebKit preferences to the plugin. | 139 // Passes the WebKit preferences to the plugin. |
| 140 IPC_MESSAGE_CONTROL1(PpapiMsg_SetPreferences, | 140 IPC_MESSAGE_CONTROL1(PpapiMsg_SetPreferences, |
| 141 ::ppapi::Preferences) | 141 ppapi::Preferences) |
| 142 | 142 |
| 143 // Network state notification from the browser for implementing | 143 // Network state notification from the browser for implementing |
| 144 // PPP_NetworkState_Dev. | 144 // PPP_NetworkState_Dev. |
| 145 IPC_MESSAGE_CONTROL1(PpapiMsg_SetNetworkState, | 145 IPC_MESSAGE_CONTROL1(PpapiMsg_SetNetworkState, |
| 146 bool /* online */) | 146 bool /* online */) |
| 147 | 147 |
| 148 // Sent in both directions to see if the other side supports the given | 148 // Sent in both directions to see if the other side supports the given |
| 149 // interface. | 149 // interface. |
| 150 IPC_SYNC_MESSAGE_CONTROL1_1(PpapiMsg_SupportsInterface, | 150 IPC_SYNC_MESSAGE_CONTROL1_1(PpapiMsg_SupportsInterface, |
| 151 std::string /* interface_name */, | 151 std::string /* interface_name */, |
| (...skipping 30 matching lines...) Expand all Loading... |
| 182 PpapiMsg_PPBBroker_ConnectComplete, | 182 PpapiMsg_PPBBroker_ConnectComplete, |
| 183 ppapi::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 ppapi::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<ppapi::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 ppapi::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 ppapi::HostResource /* net_connector */, | 202 ppapi::HostResource /* net_connector */, |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 | 235 |
| 236 // PPB_Surface3D. | 236 // PPB_Surface3D. |
| 237 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBSurface3D_SwapBuffersACK, | 237 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBSurface3D_SwapBuffersACK, |
| 238 ppapi::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 ppapi::proxy::SerializedVar /* property */, |
| 246 pp::proxy::SerializedVar /* out_exception */, | 246 ppapi::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, |
| 249 int64 /* ppp_class */, | 249 int64 /* ppp_class */, |
| 250 int64 /* object */, | 250 int64 /* object */, |
| 251 pp::proxy::SerializedVar /* method */, | 251 ppapi::proxy::SerializedVar /* method */, |
| 252 pp::proxy::SerializedVar /* out_exception */, | 252 ppapi::proxy::SerializedVar /* out_exception */, |
| 253 bool /* result */) | 253 bool /* result */) |
| 254 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiMsg_PPPClass_GetProperty, | 254 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiMsg_PPPClass_GetProperty, |
| 255 int64 /* ppp_class */, | 255 int64 /* ppp_class */, |
| 256 int64 /* object */, | 256 int64 /* object */, |
| 257 pp::proxy::SerializedVar /* property */, | 257 ppapi::proxy::SerializedVar /* property */, |
| 258 pp::proxy::SerializedVar /* out_exception */, | 258 ppapi::proxy::SerializedVar /* out_exception */, |
| 259 pp::proxy::SerializedVar /* result */) | 259 ppapi::proxy::SerializedVar /* result */) |
| 260 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiMsg_PPPClass_EnumerateProperties, | 260 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiMsg_PPPClass_EnumerateProperties, |
| 261 int64 /* ppp_class */, | 261 int64 /* ppp_class */, |
| 262 int64 /* object */, | 262 int64 /* object */, |
| 263 std::vector<pp::proxy::SerializedVar> /* props */, | 263 std::vector<ppapi::proxy::SerializedVar> /* props */, |
| 264 pp::proxy::SerializedVar /* out_exception */) | 264 ppapi::proxy::SerializedVar /* out_exception */) |
| 265 IPC_SYNC_MESSAGE_ROUTED4_1(PpapiMsg_PPPClass_SetProperty, | 265 IPC_SYNC_MESSAGE_ROUTED4_1(PpapiMsg_PPPClass_SetProperty, |
| 266 int64 /* ppp_class */, | 266 int64 /* ppp_class */, |
| 267 int64 /* object */, | 267 int64 /* object */, |
| 268 pp::proxy::SerializedVar /* name */, | 268 ppapi::proxy::SerializedVar /* name */, |
| 269 pp::proxy::SerializedVar /* value */, | 269 ppapi::proxy::SerializedVar /* value */, |
| 270 pp::proxy::SerializedVar /* out_exception */) | 270 ppapi::proxy::SerializedVar /* out_exception */) |
| 271 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiMsg_PPPClass_RemoveProperty, | 271 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiMsg_PPPClass_RemoveProperty, |
| 272 int64 /* ppp_class */, | 272 int64 /* ppp_class */, |
| 273 int64 /* object */, | 273 int64 /* object */, |
| 274 pp::proxy::SerializedVar /* property */, | 274 ppapi::proxy::SerializedVar /* property */, |
| 275 pp::proxy::SerializedVar /* out_exception */) | 275 ppapi::proxy::SerializedVar /* out_exception */) |
| 276 IPC_SYNC_MESSAGE_ROUTED4_2(PpapiMsg_PPPClass_Call, | 276 IPC_SYNC_MESSAGE_ROUTED4_2(PpapiMsg_PPPClass_Call, |
| 277 int64 /* ppp_class */, | 277 int64 /* ppp_class */, |
| 278 int64 /* object */, | 278 int64 /* object */, |
| 279 pp::proxy::SerializedVar /* method_name */, | 279 ppapi::proxy::SerializedVar /* method_name */, |
| 280 std::vector<pp::proxy::SerializedVar> /* args */, | 280 std::vector<ppapi::proxy::SerializedVar> /* args */, |
| 281 pp::proxy::SerializedVar /* out_exception */, | 281 ppapi::proxy::SerializedVar /* out_exception */, |
| 282 pp::proxy::SerializedVar /* result */) | 282 ppapi::proxy::SerializedVar /* result */) |
| 283 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiMsg_PPPClass_Construct, | 283 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiMsg_PPPClass_Construct, |
| 284 int64 /* ppp_class */, | 284 int64 /* ppp_class */, |
| 285 int64 /* object */, | 285 int64 /* object */, |
| 286 std::vector<pp::proxy::SerializedVar> /* args */, | 286 std::vector<ppapi::proxy::SerializedVar> /* args */, |
| 287 pp::proxy::SerializedVar /* out_exception */, | 287 ppapi::proxy::SerializedVar /* out_exception */, |
| 288 pp::proxy::SerializedVar /* result */) | 288 ppapi::proxy::SerializedVar /* result */) |
| 289 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPClass_Deallocate, | 289 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPClass_Deallocate, |
| 290 int64 /* ppp_class */, | 290 int64 /* ppp_class */, |
| 291 int64 /* object */) | 291 int64 /* object */) |
| 292 | 292 |
| 293 // PPP_Graphics3D_Dev. | 293 // PPP_Graphics3D_Dev. |
| 294 IPC_MESSAGE_ROUTED1(PpapiMsg_PPPGraphics3D_ContextLost, | 294 IPC_MESSAGE_ROUTED1(PpapiMsg_PPPGraphics3D_ContextLost, |
| 295 PP_Instance /* instance */) | 295 PP_Instance /* instance */) |
| 296 | 296 |
| 297 // PPP_InputEvent. | 297 // PPP_InputEvent. |
| 298 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPInputEvent_HandleInputEvent, | 298 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPInputEvent_HandleInputEvent, |
| (...skipping 21 matching lines...) Expand all Loading... |
| 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 ppapi::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 ppapi::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 ppapi::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 ppapi::proxy::PPBURLLoader_UpdateProgress_Params /* params *
/) |
| 341 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBURLLoader_ReadResponseBody_Ack, | 341 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBURLLoader_ReadResponseBody_Ack, |
| 342 ppapi::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 ppapi::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<ppapi::proxy::PPPVideoCapture_Buffer> /* buffers */) |
| 352 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoCapture_OnStatus, | 352 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoCapture_OnStatus, |
| 353 ppapi::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 ppapi::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 ppapi::HostResource /* video_capture */, | 359 ppapi::HostResource /* video_capture */, |
| 360 uint32_t /* buffer */) | 360 uint32_t /* buffer */) |
| 361 | 361 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 ppapi::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 ppapi::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 ppapi::proxy::SerializedVar /* soruce */, |
| 435 pp::proxy::SerializedVar /* value */) | 435 ppapi::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 ppapi::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 ppapi::HostResource /* context */, | 445 ppapi::HostResource /* context */, |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 | 483 |
| 484 // PPB_Core. | 484 // PPB_Core. |
| 485 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_AddRefResource, | 485 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_AddRefResource, |
| 486 ppapi::HostResource) | 486 ppapi::HostResource) |
| 487 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_ReleaseResource, | 487 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_ReleaseResource, |
| 488 ppapi::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 ppapi::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 ppapi::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 */, |
| (...skipping 15 matching lines...) Expand all Loading... |
| 519 std::string /* accept_mime_types */, | 519 std::string /* accept_mime_types */, |
| 520 ppapi::HostResource /* result */) | 520 ppapi::HostResource /* result */) |
| 521 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBFileChooser_Show, | 521 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBFileChooser_Show, |
| 522 ppapi::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 ppapi::HostResource /* file_system */, | 527 ppapi::HostResource /* file_system */, |
| 528 std::string /* path */, | 528 std::string /* path */, |
| 529 pp::proxy::PPBFileRef_CreateInfo /* result */) | 529 ppapi::proxy::PPBFileRef_CreateInfo /* result */) |
| 530 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFileRef_GetParent, | 530 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFileRef_GetParent, |
| 531 ppapi::HostResource /* file_ref */, | 531 ppapi::HostResource /* file_ref */, |
| 532 pp::proxy::PPBFileRef_CreateInfo /* result */) | 532 ppapi::proxy::PPBFileRef_CreateInfo /* result */) |
| 533 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileRef_MakeDirectory, | 533 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileRef_MakeDirectory, |
| 534 ppapi::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 ppapi::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, |
| (...skipping 13 matching lines...) Expand all Loading... |
| 556 ppapi::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 ppapi::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 ppapi::proxy::SerializedVar /* result */) |
| 572 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_Navigate, | 572 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_Navigate, |
| 573 ppapi::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 ppapi::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 ppapi::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 ppapi::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 ppapi::HostResource /* file_ref */, | 608 ppapi::HostResource /* file_ref */, |
| 609 PP_FileInfo /* info */, | 609 PP_FileInfo /* info */, |
| (...skipping 23 matching lines...) Expand all Loading... |
| 633 int32_t /* result */) | 633 int32_t /* result */) |
| 634 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_ModuleLocal_QueryFile, | 634 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_ModuleLocal_QueryFile, |
| 635 PP_Instance /* instance */, | 635 PP_Instance /* instance */, |
| 636 std::string /* path */, | 636 std::string /* path */, |
| 637 PP_FileInfo /* info */, | 637 PP_FileInfo /* info */, |
| 638 int32_t /* result */) | 638 int32_t /* result */) |
| 639 IPC_SYNC_MESSAGE_ROUTED2_2( | 639 IPC_SYNC_MESSAGE_ROUTED2_2( |
| 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<ppapi::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 ppapi::proxy::SerializedFlashMenu /* menu_data */, |
| 650 ppapi::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 ppapi::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 ppapi::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. |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 ppapi::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 ppapi::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 ppapi::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 ppapi::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 ppapi::proxy::SerializedVar /* script */, |
| 775 pp::proxy::SerializedVar /* out_exception */, | 775 ppapi::proxy::SerializedVar /* out_exception */, |
| 776 pp::proxy::SerializedVar /* result */) | 776 ppapi::proxy::SerializedVar /* result */) |
| 777 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_SetFullscreen, | 777 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_SetFullscreen, |
| 778 PP_Instance /* instance */, | 778 PP_Instance /* instance */, |
| 779 PP_Bool /* fullscreen */, | 779 PP_Bool /* fullscreen */, |
| 780 PP_Bool /* result */) | 780 PP_Bool /* result */) |
| 781 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBInstance_GetScreenSize, | 781 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBInstance_GetScreenSize, |
| 782 PP_Instance /* instance */, | 782 PP_Instance /* instance */, |
| 783 PP_Bool /* result */, | 783 PP_Bool /* result */, |
| 784 PP_Size /* size */) | 784 PP_Size /* size */) |
| 785 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_RequestInputEvents, | 785 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_RequestInputEvents, |
| 786 PP_Instance /* instance */, | 786 PP_Instance /* instance */, |
| 787 bool /* is_filtering */, | 787 bool /* is_filtering */, |
| 788 uint32_t /* event_classes */) | 788 uint32_t /* event_classes */) |
| 789 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_ClearInputEvents, | 789 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_ClearInputEvents, |
| 790 PP_Instance /* instance */, | 790 PP_Instance /* instance */, |
| 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 ppapi::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 ppapi::proxy::SerializedFontDescription /* description */, |
| 800 int32_t /* charset */, | 800 int32_t /* charset */, |
| 801 ppapi::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 ppapi::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, |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 851 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBURLLoader_GrantUniversalAccess, | 851 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBURLLoader_GrantUniversalAccess, |
| 852 ppapi::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 ppapi::HostResource /* result */) | 857 ppapi::HostResource /* result */) |
| 858 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBURLRequestInfo_SetProperty, | 858 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBURLRequestInfo_SetProperty, |
| 859 ppapi::HostResource /* request */, | 859 ppapi::HostResource /* request */, |
| 860 int32_t /* property */, | 860 int32_t /* property */, |
| 861 pp::proxy::SerializedVar /* value */) | 861 ppapi::proxy::SerializedVar /* value */) |
| 862 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBURLRequestInfo_AppendDataToBody, | 862 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBURLRequestInfo_AppendDataToBody, |
| 863 ppapi::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 ppapi::HostResource /* request */, | 866 ppapi::HostResource /* request */, |
| 867 ppapi::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 ppapi::HostResource /* response */, | 874 ppapi::HostResource /* response */, |
| 875 int32_t /* property */, | 875 int32_t /* property */, |
| 876 pp::proxy::SerializedVar /* result */) | 876 ppapi::proxy::SerializedVar /* result */) |
| 877 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLResponseInfo_GetBodyAsFileRef, | 877 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLResponseInfo_GetBodyAsFileRef, |
| 878 ppapi::HostResource /* response */, | 878 ppapi::HostResource /* response */, |
| 879 pp::proxy::PPBFileRef_CreateInfo /* result */) | 879 ppapi::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 ppapi::proxy::SerializedVar /* relative */, |
| 885 pp::proxy::SerializedVar /* result */) | 885 ppapi::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 ppapi::proxy::SerializedVar /* relative */, |
| 889 PP_Bool /* result */) | 889 PP_Bool /* result */) |
| 890 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBURLUtil_DocumentCanAccessDocument, | 890 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBURLUtil_DocumentCanAccessDocument, |
| 891 PP_Instance /* active */, | 891 PP_Instance /* active */, |
| 892 PP_Instance /* target */, | 892 PP_Instance /* target */, |
| 893 PP_Bool /* result */) | 893 PP_Bool /* result */) |
| 894 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLUtil_GetDocumentURL, | 894 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLUtil_GetDocumentURL, |
| 895 PP_Instance /* active */, | 895 PP_Instance /* active */, |
| 896 pp::proxy::SerializedVar /* result */) | 896 ppapi::proxy::SerializedVar /* result */) |
| 897 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLUtil_GetPluginInstanceURL, | 897 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLUtil_GetPluginInstanceURL, |
| 898 PP_Instance /* active */, | 898 PP_Instance /* active */, |
| 899 pp::proxy::SerializedVar /* result */) | 899 ppapi::proxy::SerializedVar /* result */) |
| 900 | 900 |
| 901 // PPB_Var. | 901 // PPB_Var. |
| 902 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBVar_AddRefObject, | 902 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBVar_AddRefObject, |
| 903 int64 /* object_id */, | 903 int64 /* object_id */, |
| 904 int /* unused - need a return value for sync msgs */) | 904 int /* unused - need a return value for sync msgs */) |
| 905 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVar_ReleaseObject, | 905 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVar_ReleaseObject, |
| 906 int64 /* object_id */) | 906 int64 /* object_id */) |
| 907 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBVar_ConvertType, | 907 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBVar_ConvertType, |
| 908 PP_Instance /* instance */, | 908 PP_Instance /* instance */, |
| 909 pp::proxy::SerializedVar /* var */, | 909 ppapi::proxy::SerializedVar /* var */, |
| 910 int /* new_type */, | 910 int /* new_type */, |
| 911 pp::proxy::SerializedVar /* exception */, | 911 ppapi::proxy::SerializedVar /* exception */, |
| 912 pp::proxy::SerializedVar /* result */) | 912 ppapi::proxy::SerializedVar /* result */) |
| 913 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_HasProperty, | 913 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_HasProperty, |
| 914 pp::proxy::SerializedVar /* object */, | 914 ppapi::proxy::SerializedVar /* object */, |
| 915 pp::proxy::SerializedVar /* property */, | 915 ppapi::proxy::SerializedVar /* property */, |
| 916 pp::proxy::SerializedVar /* out_exception */, | 916 ppapi::proxy::SerializedVar /* out_exception */, |
| 917 PP_Bool /* result */) | 917 PP_Bool /* result */) |
| 918 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_HasMethodDeprecated, | 918 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_HasMethodDeprecated, |
| 919 pp::proxy::SerializedVar /* object */, | 919 ppapi::proxy::SerializedVar /* object */, |
| 920 pp::proxy::SerializedVar /* method */, | 920 ppapi::proxy::SerializedVar /* method */, |
| 921 pp::proxy::SerializedVar /* out_exception */, | 921 ppapi::proxy::SerializedVar /* out_exception */, |
| 922 PP_Bool /* result */) | 922 PP_Bool /* result */) |
| 923 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_GetProperty, | 923 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_GetProperty, |
| 924 pp::proxy::SerializedVar /* object */, | 924 ppapi::proxy::SerializedVar /* object */, |
| 925 pp::proxy::SerializedVar /* property */, | 925 ppapi::proxy::SerializedVar /* property */, |
| 926 pp::proxy::SerializedVar /* out_exception */, | 926 ppapi::proxy::SerializedVar /* out_exception */, |
| 927 pp::proxy::SerializedVar /* result */) | 927 ppapi::proxy::SerializedVar /* result */) |
| 928 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_DeleteProperty, | 928 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_DeleteProperty, |
| 929 pp::proxy::SerializedVar /* object */, | 929 ppapi::proxy::SerializedVar /* object */, |
| 930 pp::proxy::SerializedVar /* property */, | 930 ppapi::proxy::SerializedVar /* property */, |
| 931 pp::proxy::SerializedVar /* out_exception */, | 931 ppapi::proxy::SerializedVar /* out_exception */, |
| 932 PP_Bool /* result */) | 932 PP_Bool /* result */) |
| 933 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBVar_EnumerateProperties, | 933 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBVar_EnumerateProperties, |
| 934 pp::proxy::SerializedVar /* object */, | 934 ppapi::proxy::SerializedVar /* object */, |
| 935 std::vector<pp::proxy::SerializedVar> /* props */, | 935 std::vector<ppapi::proxy::SerializedVar> /* props */, |
| 936 pp::proxy::SerializedVar /* out_exception */) | 936 ppapi::proxy::SerializedVar /* out_exception */) |
| 937 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_SetPropertyDeprecated, | 937 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_SetPropertyDeprecated, |
| 938 pp::proxy::SerializedVar /* object */, | 938 ppapi::proxy::SerializedVar /* object */, |
| 939 pp::proxy::SerializedVar /* name */, | 939 ppapi::proxy::SerializedVar /* name */, |
| 940 pp::proxy::SerializedVar /* value */, | 940 ppapi::proxy::SerializedVar /* value */, |
| 941 pp::proxy::SerializedVar /* out_exception */) | 941 ppapi::proxy::SerializedVar /* out_exception */) |
| 942 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBVar_CallDeprecated, | 942 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBVar_CallDeprecated, |
| 943 pp::proxy::SerializedVar /* object */, | 943 ppapi::proxy::SerializedVar /* object */, |
| 944 pp::proxy::SerializedVar /* method_name */, | 944 ppapi::proxy::SerializedVar /* method_name */, |
| 945 std::vector<pp::proxy::SerializedVar> /* args */, | 945 std::vector<ppapi::proxy::SerializedVar> /* args */, |
| 946 pp::proxy::SerializedVar /* out_exception */, | 946 ppapi::proxy::SerializedVar /* out_exception */, |
| 947 pp::proxy::SerializedVar /* result */) | 947 ppapi::proxy::SerializedVar /* result */) |
| 948 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_Construct, | 948 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_Construct, |
| 949 pp::proxy::SerializedVar /* object */, | 949 ppapi::proxy::SerializedVar /* object */, |
| 950 std::vector<pp::proxy::SerializedVar> /* args */, | 950 std::vector<ppapi::proxy::SerializedVar> /* args */, |
| 951 pp::proxy::SerializedVar /* out_exception */, | 951 ppapi::proxy::SerializedVar /* out_exception */, |
| 952 pp::proxy::SerializedVar /* result */) | 952 ppapi::proxy::SerializedVar /* result */) |
| 953 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, | 953 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, |
| 954 pp::proxy::SerializedVar /* var */, | 954 ppapi::proxy::SerializedVar /* var */, |
| 955 int64 /* object_class */, | 955 int64 /* object_class */, |
| 956 int64 /* object-data */, | 956 int64 /* object-data */, |
| 957 PP_Bool /* result */) | 957 PP_Bool /* result */) |
| 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 ppapi::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 ppapi::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 ppapi::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 ppapi::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 ppapi::HostResource /* result */) | 981 ppapi::HostResource /* result */) |
| 982 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBVideoCapture_StartCapture, | 982 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBVideoCapture_StartCapture, |
| 983 ppapi::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, |
| (...skipping 18 matching lines...) Expand all Loading... |
| 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 ppapi::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 ppapi::HostResource /* video_decoder */) | 1010 ppapi::HostResource /* video_decoder */) |
| 1011 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1011 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
| 1012 ppapi::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 ppapi::HostResource /* video_decoder */) | 1014 ppapi::HostResource /* video_decoder */) |
| OLD | NEW |