| 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 596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 607 int32_t /* bitstream buffer id */, | 607 int32_t /* bitstream buffer id */, |
| 608 int32_t /* PP_CompletionCallback result */) | 608 int32_t /* PP_CompletionCallback result */) |
| 609 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBVideoDecoder_FlushACK, | 609 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBVideoDecoder_FlushACK, |
| 610 ppapi::HostResource /* video_decoder */, | 610 ppapi::HostResource /* video_decoder */, |
| 611 int32_t /* PP_CompletionCallback result */) | 611 int32_t /* PP_CompletionCallback result */) |
| 612 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBVideoDecoder_ResetACK, | 612 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBVideoDecoder_ResetACK, |
| 613 ppapi::HostResource /* video_decoder */, | 613 ppapi::HostResource /* video_decoder */, |
| 614 int32_t /* PP_CompletionCallback result */) | 614 int32_t /* PP_CompletionCallback result */) |
| 615 | 615 |
| 616 // PPP_VideoDecoder_Dev. | 616 // PPP_VideoDecoder_Dev. |
| 617 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPVideoDecoder_ProvidePictureBuffers, | 617 IPC_MESSAGE_ROUTED4(PpapiMsg_PPPVideoDecoder_ProvidePictureBuffers, |
| 618 ppapi::HostResource /* video_decoder */, | 618 ppapi::HostResource /* video_decoder */, |
| 619 uint32_t /* requested number of buffers */, | 619 uint32_t /* requested number of buffers */, |
| 620 PP_Size /* dimensions of buffers */) | 620 PP_Size /* dimensions of buffers */, |
| 621 uint32_t /* texture_target */) |
| 621 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_DismissPictureBuffer, | 622 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_DismissPictureBuffer, |
| 622 ppapi::HostResource /* video_decoder */, | 623 ppapi::HostResource /* video_decoder */, |
| 623 int32_t /* picture buffer id */) | 624 int32_t /* picture buffer id */) |
| 624 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_PictureReady, | 625 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_PictureReady, |
| 625 ppapi::HostResource /* video_decoder */, | 626 ppapi::HostResource /* video_decoder */, |
| 626 PP_Picture_Dev /* output picture */) | 627 PP_Picture_Dev /* output picture */) |
| 627 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_NotifyError, | 628 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_NotifyError, |
| 628 ppapi::HostResource /* video_decoder */, | 629 ppapi::HostResource /* video_decoder */, |
| 629 PP_VideoDecodeError_Dev /* error */) | 630 PP_VideoDecodeError_Dev /* error */) |
| 630 #endif // !defined(OS_NACL) | 631 #endif // !defined(OS_NACL) |
| (...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1326 // PPB_X509Certificate_Private | 1327 // PPB_X509Certificate_Private |
| 1327 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, | 1328 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, |
| 1328 std::vector<char> /* der */, | 1329 std::vector<char> /* der */, |
| 1329 bool /* succeeded */, | 1330 bool /* succeeded */, |
| 1330 ppapi::PPB_X509Certificate_Fields /* result */) | 1331 ppapi::PPB_X509Certificate_Fields /* result */) |
| 1331 | 1332 |
| 1332 // PPB_Font. | 1333 // PPB_Font. |
| 1333 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, | 1334 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, |
| 1334 std::string /* result */) | 1335 std::string /* result */) |
| 1335 #endif // !defined(OS_NACL) | 1336 #endif // !defined(OS_NACL) |
| OLD | NEW |