OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Multiply-included message header, no traditional include guard. | 5 // Multiply-included message header, no traditional include guard. |
6 #include <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 897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
908 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetWindowObject, | 908 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetWindowObject, |
909 PP_Instance /* instance */, | 909 PP_Instance /* instance */, |
910 ppapi::proxy::SerializedVar /* result */) | 910 ppapi::proxy::SerializedVar /* result */) |
911 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetOwnerElementObject, | 911 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetOwnerElementObject, |
912 PP_Instance /* instance */, | 912 PP_Instance /* instance */, |
913 ppapi::proxy::SerializedVar /* result */) | 913 ppapi::proxy::SerializedVar /* result */) |
914 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_BindGraphics, | 914 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_BindGraphics, |
915 PP_Instance /* instance */, | 915 PP_Instance /* instance */, |
916 ppapi::HostResource /* device */, | 916 ppapi::HostResource /* device */, |
917 PP_Bool /* result */) | 917 PP_Bool /* result */) |
| 918 IPC_SYNC_MESSAGE_ROUTED1_1( |
| 919 PpapiHostMsg_PPBInstance_AudioHardwareOutputSampleRate, |
| 920 PP_Instance /* instance */, |
| 921 uint32_t /* result */) |
| 922 IPC_SYNC_MESSAGE_ROUTED1_1( |
| 923 PpapiHostMsg_PPBInstance_AudioHardwareOutputBufferSize, |
| 924 PP_Instance /* instance */, |
| 925 uint32_t /* result */) |
918 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_IsFullFrame, | 926 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_IsFullFrame, |
919 PP_Instance /* instance */, | 927 PP_Instance /* instance */, |
920 PP_Bool /* result */) | 928 PP_Bool /* result */) |
921 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBInstance_ExecuteScript, | 929 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBInstance_ExecuteScript, |
922 PP_Instance /* instance */, | 930 PP_Instance /* instance */, |
923 ppapi::proxy::SerializedVar /* script */, | 931 ppapi::proxy::SerializedVar /* script */, |
924 ppapi::proxy::SerializedVar /* out_exception */, | 932 ppapi::proxy::SerializedVar /* out_exception */, |
925 ppapi::proxy::SerializedVar /* result */) | 933 ppapi::proxy::SerializedVar /* result */) |
926 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetDefaultCharSet, | 934 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetDefaultCharSet, |
927 PP_Instance /* instance */, | 935 PP_Instance /* instance */, |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1137 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1145 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
1138 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1146 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
1139 ppapi::HostResource /* video_decoder */, | 1147 ppapi::HostResource /* video_decoder */, |
1140 int32_t /* picture buffer id */) | 1148 int32_t /* picture buffer id */) |
1141 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1149 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
1142 ppapi::HostResource /* video_decoder */) | 1150 ppapi::HostResource /* video_decoder */) |
1143 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1151 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
1144 ppapi::HostResource /* video_decoder */) | 1152 ppapi::HostResource /* video_decoder */) |
1145 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1153 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
1146 ppapi::HostResource /* video_decoder */) | 1154 ppapi::HostResource /* video_decoder */) |
OLD | NEW |