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 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
916 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetWindowObject, | 916 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetWindowObject, |
917 PP_Instance /* instance */, | 917 PP_Instance /* instance */, |
918 ppapi::proxy::SerializedVar /* result */) | 918 ppapi::proxy::SerializedVar /* result */) |
919 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetOwnerElementObject, | 919 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetOwnerElementObject, |
920 PP_Instance /* instance */, | 920 PP_Instance /* instance */, |
921 ppapi::proxy::SerializedVar /* result */) | 921 ppapi::proxy::SerializedVar /* result */) |
922 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_BindGraphics, | 922 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_BindGraphics, |
923 PP_Instance /* instance */, | 923 PP_Instance /* instance */, |
924 ppapi::HostResource /* device */, | 924 ppapi::HostResource /* device */, |
925 PP_Bool /* result */) | 925 PP_Bool /* result */) |
| 926 IPC_SYNC_MESSAGE_ROUTED1_1( |
| 927 PpapiHostMsg_PPBInstance_GetAudioHardwareOutputSampleRate, |
| 928 PP_Instance /* instance */, |
| 929 uint32_t /* result */) |
| 930 IPC_SYNC_MESSAGE_ROUTED1_1( |
| 931 PpapiHostMsg_PPBInstance_GetAudioHardwareOutputBufferSize, |
| 932 PP_Instance /* instance */, |
| 933 uint32_t /* result */) |
926 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_IsFullFrame, | 934 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_IsFullFrame, |
927 PP_Instance /* instance */, | 935 PP_Instance /* instance */, |
928 PP_Bool /* result */) | 936 PP_Bool /* result */) |
929 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBInstance_ExecuteScript, | 937 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBInstance_ExecuteScript, |
930 PP_Instance /* instance */, | 938 PP_Instance /* instance */, |
931 ppapi::proxy::SerializedVar /* script */, | 939 ppapi::proxy::SerializedVar /* script */, |
932 ppapi::proxy::SerializedVar /* out_exception */, | 940 ppapi::proxy::SerializedVar /* out_exception */, |
933 ppapi::proxy::SerializedVar /* result */) | 941 ppapi::proxy::SerializedVar /* result */) |
934 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetDefaultCharSet, | 942 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetDefaultCharSet, |
935 PP_Instance /* instance */, | 943 PP_Instance /* instance */, |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1158 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1166 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
1159 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1167 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
1160 ppapi::HostResource /* video_decoder */, | 1168 ppapi::HostResource /* video_decoder */, |
1161 int32_t /* picture buffer id */) | 1169 int32_t /* picture buffer id */) |
1162 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1170 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
1163 ppapi::HostResource /* video_decoder */) | 1171 ppapi::HostResource /* video_decoder */) |
1164 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1172 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
1165 ppapi::HostResource /* video_decoder */) | 1173 ppapi::HostResource /* video_decoder */) |
1166 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1174 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
1167 ppapi::HostResource /* video_decoder */) | 1175 ppapi::HostResource /* video_decoder */) |
OLD | NEW |