| 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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 // PPP_NetworkState_Dev. | 186 // PPP_NetworkState_Dev. |
| 187 IPC_MESSAGE_CONTROL1(PpapiMsg_SetNetworkState, | 187 IPC_MESSAGE_CONTROL1(PpapiMsg_SetNetworkState, |
| 188 bool /* online */) | 188 bool /* online */) |
| 189 | 189 |
| 190 // Sent in both directions to see if the other side supports the given | 190 // Sent in both directions to see if the other side supports the given |
| 191 // interface. | 191 // interface. |
| 192 IPC_SYNC_MESSAGE_CONTROL1_1(PpapiMsg_SupportsInterface, | 192 IPC_SYNC_MESSAGE_CONTROL1_1(PpapiMsg_SupportsInterface, |
| 193 std::string /* interface_name */, | 193 std::string /* interface_name */, |
| 194 bool /* result */) | 194 bool /* result */) |
| 195 | 195 |
| 196 IPC_MESSAGE_CONTROL2(PpapiMsg_ExecuteCallback, | |
| 197 uint32 /* serialized_callback */, | |
| 198 int32 /* param */) | |
| 199 | |
| 200 // Broker Process. | 196 // Broker Process. |
| 201 | 197 |
| 202 IPC_SYNC_MESSAGE_CONTROL2_1(PpapiMsg_ConnectToPlugin, | 198 IPC_SYNC_MESSAGE_CONTROL2_1(PpapiMsg_ConnectToPlugin, |
| 203 PP_Instance /* instance */, | 199 PP_Instance /* instance */, |
| 204 IPC::PlatformFileForTransit /* handle */, | 200 IPC::PlatformFileForTransit /* handle */, |
| 205 int32_t /* result */) | 201 int32_t /* result */) |
| 206 | 202 |
| 207 // PPB_Audio. | 203 // PPB_Audio. |
| 208 | 204 |
| 209 // Notifies the result of the audio stream create call. This is called in | 205 // Notifies the result of the audio stream create call. This is called in |
| (...skipping 17 matching lines...) Expand all Loading... |
| 227 IPC::PlatformFileForTransit /* handle */, | 223 IPC::PlatformFileForTransit /* handle */, |
| 228 int32_t /* result */) | 224 int32_t /* result */) |
| 229 | 225 |
| 230 // PPB_FileChooser. | 226 // PPB_FileChooser. |
| 231 IPC_MESSAGE_ROUTED3( | 227 IPC_MESSAGE_ROUTED3( |
| 232 PpapiMsg_PPBFileChooser_ChooseComplete, | 228 PpapiMsg_PPBFileChooser_ChooseComplete, |
| 233 ppapi::HostResource /* chooser */, | 229 ppapi::HostResource /* chooser */, |
| 234 int32_t /* result_code (will be != PP_OK on failure */, | 230 int32_t /* result_code (will be != PP_OK on failure */, |
| 235 std::vector<ppapi::PPB_FileRef_CreateInfo> /* chosen_files */) | 231 std::vector<ppapi::PPB_FileRef_CreateInfo> /* chosen_files */) |
| 236 | 232 |
| 233 // PPB_FileRef. |
| 234 IPC_MESSAGE_ROUTED3( |
| 235 PpapiMsg_PPBFileRef_CallbackComplete, |
| 236 ppapi::HostResource /* resource */, |
| 237 int /* callback_id */, |
| 238 int32_t /* result */) |
| 239 |
| 237 // PPB_FileSystem. | 240 // PPB_FileSystem. |
| 238 IPC_MESSAGE_ROUTED2( | 241 IPC_MESSAGE_ROUTED2( |
| 239 PpapiMsg_PPBFileSystem_OpenComplete, | 242 PpapiMsg_PPBFileSystem_OpenComplete, |
| 240 ppapi::HostResource /* filesystem */, | 243 ppapi::HostResource /* filesystem */, |
| 241 int32_t /* result */) | 244 int32_t /* result */) |
| 242 | 245 |
| 243 // PPB_Flash_NetConnector. | 246 // PPB_Flash_NetConnector. |
| 244 IPC_MESSAGE_ROUTED5(PpapiMsg_PPBFlashNetConnector_ConnectACK, | 247 IPC_MESSAGE_ROUTED5(PpapiMsg_PPBFlashNetConnector_ConnectACK, |
| 245 ppapi::HostResource /* net_connector */, | 248 ppapi::HostResource /* net_connector */, |
| 246 int32_t /* result */, | 249 int32_t /* result */, |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 // PPB_Graphics2D. | 293 // PPB_Graphics2D. |
| 291 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBGraphics2D_FlushACK, | 294 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBGraphics2D_FlushACK, |
| 292 ppapi::HostResource /* graphics_2d */, | 295 ppapi::HostResource /* graphics_2d */, |
| 293 int32_t /* pp_error */) | 296 int32_t /* pp_error */) |
| 294 | 297 |
| 295 // PPB_Graphics3D. | 298 // PPB_Graphics3D. |
| 296 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBGraphics3D_SwapBuffersACK, | 299 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBGraphics3D_SwapBuffersACK, |
| 297 ppapi::HostResource /* graphics_3d */, | 300 ppapi::HostResource /* graphics_3d */, |
| 298 int32_t /* pp_error */) | 301 int32_t /* pp_error */) |
| 299 | 302 |
| 303 // PPB_Instance. |
| 304 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBInstance_MouseLockComplete, |
| 305 PP_Instance /* instance */, |
| 306 int32_t /* result */) |
| 307 |
| 300 // PPB_Surface3D. | 308 // PPB_Surface3D. |
| 301 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBSurface3D_SwapBuffersACK, | 309 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBSurface3D_SwapBuffersACK, |
| 302 ppapi::HostResource /* surface_3d */, | 310 ppapi::HostResource /* surface_3d */, |
| 303 int32_t /* pp_error */) | 311 int32_t /* pp_error */) |
| 304 | 312 |
| 305 // PPP_Class. | 313 // PPP_Class. |
| 306 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiMsg_PPPClass_HasProperty, | 314 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiMsg_PPPClass_HasProperty, |
| 307 int64 /* ppp_class */, | 315 int64 /* ppp_class */, |
| 308 int64 /* object */, | 316 int64 /* object */, |
| 309 ppapi::proxy::SerializedVar /* property */, | 317 ppapi::proxy::SerializedVar /* property */, |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 | 413 |
| 406 // PPB_URLLoader | 414 // PPB_URLLoader |
| 407 // (Messages from browser to plugin to notify it of changes in state.) | 415 // (Messages from browser to plugin to notify it of changes in state.) |
| 408 IPC_MESSAGE_ROUTED1( | 416 IPC_MESSAGE_ROUTED1( |
| 409 PpapiMsg_PPBURLLoader_UpdateProgress, | 417 PpapiMsg_PPBURLLoader_UpdateProgress, |
| 410 ppapi::proxy::PPBURLLoader_UpdateProgress_Params /* params */) | 418 ppapi::proxy::PPBURLLoader_UpdateProgress_Params /* params */) |
| 411 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBURLLoader_ReadResponseBody_Ack, | 419 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBURLLoader_ReadResponseBody_Ack, |
| 412 ppapi::HostResource /* loader */, | 420 ppapi::HostResource /* loader */, |
| 413 int32 /* result */, | 421 int32 /* result */, |
| 414 std::string /* data */) | 422 std::string /* data */) |
| 423 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBURLLoader_CallbackComplete, |
| 424 ppapi::HostResource /* loader */, |
| 425 int32_t /* result */) |
| 415 | 426 |
| 416 // PPP_VideoCapture_Dev | 427 // PPP_VideoCapture_Dev |
| 417 IPC_MESSAGE_ROUTED3( | 428 IPC_MESSAGE_ROUTED3( |
| 418 PpapiMsg_PPPVideoCapture_OnDeviceInfo, | 429 PpapiMsg_PPPVideoCapture_OnDeviceInfo, |
| 419 ppapi::HostResource /* video_capture */, | 430 ppapi::HostResource /* video_capture */, |
| 420 PP_VideoCaptureDeviceInfo_Dev /* info */, | 431 PP_VideoCaptureDeviceInfo_Dev /* info */, |
| 421 std::vector<ppapi::proxy::PPPVideoCapture_Buffer> /* buffers */) | 432 std::vector<ppapi::proxy::PPPVideoCapture_Buffer> /* buffers */) |
| 422 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoCapture_OnStatus, | 433 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoCapture_OnStatus, |
| 423 ppapi::HostResource /* video_capture */, | 434 ppapi::HostResource /* video_capture */, |
| 424 uint32_t /* status */) | 435 uint32_t /* status */) |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 | 579 |
| 569 // PPB_FileChooser. | 580 // PPB_FileChooser. |
| 570 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFileChooser_Create, | 581 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFileChooser_Create, |
| 571 PP_Instance /* instance */, | 582 PP_Instance /* instance */, |
| 572 int /* mode */, | 583 int /* mode */, |
| 573 ppapi::proxy::SerializedVar /* accept_mime_types */, | 584 ppapi::proxy::SerializedVar /* accept_mime_types */, |
| 574 ppapi::HostResource /* result */) | 585 ppapi::HostResource /* result */) |
| 575 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBFileChooser_Show, | 586 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBFileChooser_Show, |
| 576 ppapi::HostResource /* file_chooser */) | 587 ppapi::HostResource /* file_chooser */) |
| 577 | 588 |
| 578 | |
| 579 // PPB_FileRef. | 589 // PPB_FileRef. |
| 580 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFileRef_Create, | 590 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFileRef_Create, |
| 581 ppapi::HostResource /* file_system */, | 591 ppapi::HostResource /* file_system */, |
| 582 std::string /* path */, | 592 std::string /* path */, |
| 583 ppapi::PPB_FileRef_CreateInfo /* result */) | 593 ppapi::PPB_FileRef_CreateInfo /* result */) |
| 584 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFileRef_GetParent, | 594 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFileRef_GetParent, |
| 585 ppapi::HostResource /* file_ref */, | 595 ppapi::HostResource /* file_ref */, |
| 586 ppapi::PPB_FileRef_CreateInfo /* result */) | 596 ppapi::PPB_FileRef_CreateInfo /* result */) |
| 587 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileRef_MakeDirectory, | 597 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileRef_MakeDirectory, |
| 588 ppapi::HostResource /* file_ref */, | 598 ppapi::HostResource /* file_ref */, |
| 589 PP_Bool /* make_ancestors */, | 599 PP_Bool /* make_ancestors */, |
| 590 uint32_t /* serialized_callback */) | 600 int /* callback_id */) |
| 591 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFileRef_Touch, | 601 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFileRef_Touch, |
| 592 ppapi::HostResource /* file_ref */, | 602 ppapi::HostResource /* file_ref */, |
| 593 PP_Time /* last_access */, | 603 PP_Time /* last_access */, |
| 594 PP_Time /* last_modified */, | 604 PP_Time /* last_modified */, |
| 595 uint32_t /* serialized_callback */) | 605 int /* callback_id */) |
| 596 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFileRef_Delete, | 606 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFileRef_Delete, |
| 597 ppapi::HostResource /* file_ref */, | 607 ppapi::HostResource /* file_ref */, |
| 598 uint32_t /* serialized_callback */) | 608 int /* callback_id */) |
| 599 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileRef_Rename, | 609 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileRef_Rename, |
| 600 ppapi::HostResource /* file_ref */, | 610 ppapi::HostResource /* file_ref */, |
| 601 ppapi::HostResource /* new_file_ref */, | 611 ppapi::HostResource /* new_file_ref */, |
| 602 uint32_t /* serialized_callback */) | 612 int /* callback_id */) |
| 603 | 613 |
| 604 // PPB_FileSystem. | 614 // PPB_FileSystem. |
| 605 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFileSystem_Create, | 615 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFileSystem_Create, |
| 606 PP_Instance /* instance */, | 616 PP_Instance /* instance */, |
| 607 int /* type */, | 617 int /* type */, |
| 608 ppapi::HostResource /* result */) | 618 ppapi::HostResource /* result */) |
| 609 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFileSystem_Open, | 619 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFileSystem_Open, |
| 610 ppapi::HostResource /* result */, | 620 ppapi::HostResource /* result */, |
| 611 int64_t /* expected_size */) | 621 int64_t /* expected_size */) |
| 612 | 622 |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 882 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_RequestInputEvents, | 892 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_RequestInputEvents, |
| 883 PP_Instance /* instance */, | 893 PP_Instance /* instance */, |
| 884 bool /* is_filtering */, | 894 bool /* is_filtering */, |
| 885 uint32_t /* event_classes */) | 895 uint32_t /* event_classes */) |
| 886 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_ClearInputEvents, | 896 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_ClearInputEvents, |
| 887 PP_Instance /* instance */, | 897 PP_Instance /* instance */, |
| 888 uint32_t /* event_classes */) | 898 uint32_t /* event_classes */) |
| 889 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_PostMessage, | 899 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_PostMessage, |
| 890 PP_Instance /* instance */, | 900 PP_Instance /* instance */, |
| 891 ppapi::proxy::SerializedVar /* message */) | 901 ppapi::proxy::SerializedVar /* message */) |
| 892 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_LockMouse, | 902 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBInstance_LockMouse, |
| 893 PP_Instance /* instance */, | 903 PP_Instance /* instance */) |
| 894 uint32_t /* serialized_callback */) | |
| 895 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBInstance_UnlockMouse, | 904 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBInstance_UnlockMouse, |
| 896 PP_Instance /* instance */) | 905 PP_Instance /* instance */) |
| 897 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_ResolveRelativeToDocument, | 906 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_ResolveRelativeToDocument, |
| 898 PP_Instance /* instance */, | 907 PP_Instance /* instance */, |
| 899 ppapi::proxy::SerializedVar /* relative */, | 908 ppapi::proxy::SerializedVar /* relative */, |
| 900 ppapi::proxy::SerializedVar /* result */) | 909 ppapi::proxy::SerializedVar /* result */) |
| 901 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_DocumentCanRequest, | 910 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_DocumentCanRequest, |
| 902 PP_Instance /* instance */, | 911 PP_Instance /* instance */, |
| 903 ppapi::proxy::SerializedVar /* relative */, | 912 ppapi::proxy::SerializedVar /* relative */, |
| 904 PP_Bool /* result */) | 913 PP_Bool /* result */) |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 953 PP_Instance /* instance */, | 962 PP_Instance /* instance */, |
| 954 PP_Rect /* caret */, | 963 PP_Rect /* caret */, |
| 955 PP_Rect /* bounding_box */) | 964 PP_Rect /* bounding_box */) |
| 956 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_CancelCompositionText, | 965 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_CancelCompositionText, |
| 957 PP_Instance /* instance */) | 966 PP_Instance /* instance */) |
| 958 | 967 |
| 959 // PPB_URLLoader. | 968 // PPB_URLLoader. |
| 960 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLLoader_Create, | 969 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLLoader_Create, |
| 961 PP_Instance /* instance */, | 970 PP_Instance /* instance */, |
| 962 ppapi::HostResource /* result */) | 971 ppapi::HostResource /* result */) |
| 963 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBURLLoader_Open, | 972 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBURLLoader_Open, |
| 964 ppapi::HostResource /* loader */, | 973 ppapi::HostResource /* loader */, |
| 965 ppapi::PPB_URLRequestInfo_Data /* request_data */, | 974 ppapi::PPB_URLRequestInfo_Data /* request_data */) |
| 966 uint32_t /* serialized_callback */) | 975 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBURLLoader_FollowRedirect, |
| 967 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBURLLoader_FollowRedirect, | 976 ppapi::HostResource /* loader */) |
| 968 ppapi::HostResource /* loader */, | |
| 969 uint32_t /* serialized_callback */) | |
| 970 IPC_SYNC_MESSAGE_ROUTED1_1( | 977 IPC_SYNC_MESSAGE_ROUTED1_1( |
| 971 PpapiHostMsg_PPBURLLoader_GetResponseInfo, | 978 PpapiHostMsg_PPBURLLoader_GetResponseInfo, |
| 972 ppapi::HostResource /* loader */, | 979 ppapi::HostResource /* loader */, |
| 973 ppapi::HostResource /* response_info_out */) | 980 ppapi::HostResource /* response_info_out */) |
| 974 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBURLLoader_ReadResponseBody, | 981 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBURLLoader_ReadResponseBody, |
| 975 ppapi::HostResource /* loader */, | 982 ppapi::HostResource /* loader */, |
| 976 int32_t /* bytes_to_read */) | 983 int32_t /* bytes_to_read */) |
| 977 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBURLLoader_FinishStreamingToFile, | 984 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBURLLoader_FinishStreamingToFile, |
| 978 ppapi::HostResource /* loader */, | 985 ppapi::HostResource /* loader */) |
| 979 uint32_t /* serialized_callback */) | |
| 980 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBURLLoader_Close, | 986 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBURLLoader_Close, |
| 981 ppapi::HostResource /* loader */) | 987 ppapi::HostResource /* loader */) |
| 982 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBURLLoader_GrantUniversalAccess, | 988 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBURLLoader_GrantUniversalAccess, |
| 983 ppapi::HostResource /* loader */) | 989 ppapi::HostResource /* loader */) |
| 984 | 990 |
| 985 // PPB_URLResponseInfo. | 991 // PPB_URLResponseInfo. |
| 986 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBURLResponseInfo_GetProperty, | 992 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBURLResponseInfo_GetProperty, |
| 987 ppapi::HostResource /* response */, | 993 ppapi::HostResource /* response */, |
| 988 int32_t /* property */, | 994 int32_t /* property */, |
| 989 ppapi::proxy::SerializedVar /* result */) | 995 ppapi::proxy::SerializedVar /* result */) |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1098 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1104 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
| 1099 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1105 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
| 1100 ppapi::HostResource /* video_decoder */, | 1106 ppapi::HostResource /* video_decoder */, |
| 1101 int32_t /* picture buffer id */) | 1107 int32_t /* picture buffer id */) |
| 1102 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1108 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
| 1103 ppapi::HostResource /* video_decoder */) | 1109 ppapi::HostResource /* video_decoder */) |
| 1104 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1110 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
| 1105 ppapi::HostResource /* video_decoder */) | 1111 ppapi::HostResource /* video_decoder */) |
| 1106 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1112 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
| 1107 ppapi::HostResource /* video_decoder */) | 1113 ppapi::HostResource /* video_decoder */) |
| OLD | NEW |