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 <map> | 6 #include <map> |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 1952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1963 uint32_t /* desired_method_mask */) | 1963 uint32_t /* desired_method_mask */) |
1964 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_OutputProtection_EnableProtectionReply) | 1964 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_OutputProtection_EnableProtectionReply) |
1965 IPC_MESSAGE_CONTROL0(PpapiHostMsg_OutputProtection_QueryStatus) | 1965 IPC_MESSAGE_CONTROL0(PpapiHostMsg_OutputProtection_QueryStatus) |
1966 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_OutputProtection_QueryStatusReply, | 1966 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_OutputProtection_QueryStatusReply, |
1967 uint32_t /* link_mask */, | 1967 uint32_t /* link_mask */, |
1968 uint32_t /* protection_mask */) | 1968 uint32_t /* protection_mask */) |
1969 | 1969 |
1970 // VideoDecoder ------------------------------------------------------ | 1970 // VideoDecoder ------------------------------------------------------ |
1971 | 1971 |
1972 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoDecoder_Create) | 1972 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoDecoder_Create) |
1973 IPC_MESSAGE_CONTROL3(PpapiHostMsg_VideoDecoder_Initialize, | 1973 IPC_MESSAGE_CONTROL4(PpapiHostMsg_VideoDecoder_Initialize, |
1974 ppapi::HostResource /* graphics_context */, | 1974 ppapi::HostResource /* graphics_context */, |
1975 PP_VideoProfile /* profile */, | 1975 PP_VideoProfile /* profile */, |
1976 PP_HardwareAcceleration /* acceleration */) | 1976 PP_HardwareAcceleration /* acceleration */, |
| 1977 uint32_t /* min_picture_count */) |
1977 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoDecoder_InitializeReply) | 1978 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoDecoder_InitializeReply) |
1978 IPC_MESSAGE_CONTROL2(PpapiHostMsg_VideoDecoder_GetShm, | 1979 IPC_MESSAGE_CONTROL2(PpapiHostMsg_VideoDecoder_GetShm, |
1979 uint32_t /* shm_id */, | 1980 uint32_t /* shm_id */, |
1980 uint32_t /* shm_size */) | 1981 uint32_t /* shm_size */) |
1981 // On success, a shm handle is passed in the ReplyParams struct. | 1982 // On success, a shm handle is passed in the ReplyParams struct. |
1982 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoDecoder_GetShmReply, | 1983 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoDecoder_GetShmReply, |
1983 uint32_t /* shm_size */) | 1984 uint32_t /* shm_size */) |
1984 IPC_MESSAGE_CONTROL3(PpapiHostMsg_VideoDecoder_Decode, | 1985 IPC_MESSAGE_CONTROL3(PpapiHostMsg_VideoDecoder_Decode, |
1985 uint32_t /* shm_id */, | 1986 uint32_t /* shm_id */, |
1986 uint32_t /* size */, | 1987 uint32_t /* size */, |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2332 std::vector<ppapi::HostResource> /* buffers */, | 2333 std::vector<ppapi::HostResource> /* buffers */, |
2333 uint32_t /* buffer_size */) | 2334 uint32_t /* buffer_size */) |
2334 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, | 2335 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, |
2335 uint32_t /* status */) | 2336 uint32_t /* status */) |
2336 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, | 2337 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, |
2337 uint32_t /* error */) | 2338 uint32_t /* error */) |
2338 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, | 2339 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, |
2339 uint32_t /* buffer */) | 2340 uint32_t /* buffer */) |
2340 | 2341 |
2341 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2342 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |