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 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
619 int32_t /* bitstream buffer id */, | 619 int32_t /* bitstream buffer id */, |
620 int32_t /* PP_CompletionCallback result */) | 620 int32_t /* PP_CompletionCallback result */) |
621 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBVideoDecoder_FlushACK, | 621 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBVideoDecoder_FlushACK, |
622 ppapi::HostResource /* video_decoder */, | 622 ppapi::HostResource /* video_decoder */, |
623 int32_t /* PP_CompletionCallback result */) | 623 int32_t /* PP_CompletionCallback result */) |
624 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBVideoDecoder_ResetACK, | 624 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBVideoDecoder_ResetACK, |
625 ppapi::HostResource /* video_decoder */, | 625 ppapi::HostResource /* video_decoder */, |
626 int32_t /* PP_CompletionCallback result */) | 626 int32_t /* PP_CompletionCallback result */) |
627 | 627 |
628 // PPP_VideoDecoder_Dev. | 628 // PPP_VideoDecoder_Dev. |
629 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPVideoDecoder_ProvidePictureBuffers, | 629 IPC_MESSAGE_ROUTED4(PpapiMsg_PPPVideoDecoder_ProvidePictureBuffers, |
630 ppapi::HostResource /* video_decoder */, | 630 ppapi::HostResource /* video_decoder */, |
631 uint32_t /* requested number of buffers */, | 631 uint32_t /* requested number of buffers */, |
632 PP_Size /* dimensions of buffers */) | 632 PP_Size /* dimensions of buffers */, |
| 633 uint32_t /* texture_target */) |
633 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_DismissPictureBuffer, | 634 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_DismissPictureBuffer, |
634 ppapi::HostResource /* video_decoder */, | 635 ppapi::HostResource /* video_decoder */, |
635 int32_t /* picture buffer id */) | 636 int32_t /* picture buffer id */) |
636 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_PictureReady, | 637 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_PictureReady, |
637 ppapi::HostResource /* video_decoder */, | 638 ppapi::HostResource /* video_decoder */, |
638 PP_Picture_Dev /* output picture */) | 639 PP_Picture_Dev /* output picture */) |
639 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_NotifyError, | 640 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_NotifyError, |
640 ppapi::HostResource /* video_decoder */, | 641 ppapi::HostResource /* video_decoder */, |
641 PP_VideoDecodeError_Dev /* error */) | 642 PP_VideoDecodeError_Dev /* error */) |
642 #endif // !defined(OS_NACL) | 643 #endif // !defined(OS_NACL) |
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1309 // PPB_X509Certificate_Private | 1310 // PPB_X509Certificate_Private |
1310 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, | 1311 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, |
1311 std::vector<char> /* der */, | 1312 std::vector<char> /* der */, |
1312 bool /* succeeded */, | 1313 bool /* succeeded */, |
1313 ppapi::PPB_X509Certificate_Fields /* result */) | 1314 ppapi::PPB_X509Certificate_Fields /* result */) |
1314 | 1315 |
1315 // PPB_Font. | 1316 // PPB_Font. |
1316 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, | 1317 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, |
1317 std::string /* result */) | 1318 std::string /* result */) |
1318 #endif // !defined(OS_NACL) | 1319 #endif // !defined(OS_NACL) |
OLD | NEW |