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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 | 54 |
55 IPC_ENUM_TRAITS(PP_DeviceType_Dev) | 55 IPC_ENUM_TRAITS(PP_DeviceType_Dev) |
56 IPC_ENUM_TRAITS(PP_InputEvent_MouseButton) | 56 IPC_ENUM_TRAITS(PP_InputEvent_MouseButton) |
57 IPC_ENUM_TRAITS(PP_InputEvent_Type) | 57 IPC_ENUM_TRAITS(PP_InputEvent_Type) |
58 IPC_ENUM_TRAITS(PP_NetAddressFamily_Private) | 58 IPC_ENUM_TRAITS(PP_NetAddressFamily_Private) |
59 IPC_ENUM_TRAITS(PP_NetworkListType_Private) | 59 IPC_ENUM_TRAITS(PP_NetworkListType_Private) |
60 IPC_ENUM_TRAITS(PP_NetworkListState_Private) | 60 IPC_ENUM_TRAITS(PP_NetworkListState_Private) |
61 IPC_ENUM_TRAITS(PP_TextInput_Type) | 61 IPC_ENUM_TRAITS(PP_TextInput_Type) |
62 IPC_ENUM_TRAITS(PP_VideoDecodeError_Dev) | 62 IPC_ENUM_TRAITS(PP_VideoDecodeError_Dev) |
63 IPC_ENUM_TRAITS(PP_VideoDecoder_Profile) | 63 IPC_ENUM_TRAITS(PP_VideoDecoder_Profile) |
| 64 IPC_ENUM_TRAITS(PP_VideoDecoder_TextureTarget_Dev) |
64 | 65 |
65 IPC_STRUCT_TRAITS_BEGIN(PP_Point) | 66 IPC_STRUCT_TRAITS_BEGIN(PP_Point) |
66 IPC_STRUCT_TRAITS_MEMBER(x) | 67 IPC_STRUCT_TRAITS_MEMBER(x) |
67 IPC_STRUCT_TRAITS_MEMBER(y) | 68 IPC_STRUCT_TRAITS_MEMBER(y) |
68 IPC_STRUCT_TRAITS_END() | 69 IPC_STRUCT_TRAITS_END() |
69 | 70 |
70 IPC_STRUCT_TRAITS_BEGIN(PP_FloatPoint) | 71 IPC_STRUCT_TRAITS_BEGIN(PP_FloatPoint) |
71 IPC_STRUCT_TRAITS_MEMBER(x) | 72 IPC_STRUCT_TRAITS_MEMBER(x) |
72 IPC_STRUCT_TRAITS_MEMBER(y) | 73 IPC_STRUCT_TRAITS_MEMBER(y) |
73 IPC_STRUCT_TRAITS_END() | 74 IPC_STRUCT_TRAITS_END() |
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
607 int32_t /* bitstream buffer id */, | 608 int32_t /* bitstream buffer id */, |
608 int32_t /* PP_CompletionCallback result */) | 609 int32_t /* PP_CompletionCallback result */) |
609 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBVideoDecoder_FlushACK, | 610 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBVideoDecoder_FlushACK, |
610 ppapi::HostResource /* video_decoder */, | 611 ppapi::HostResource /* video_decoder */, |
611 int32_t /* PP_CompletionCallback result */) | 612 int32_t /* PP_CompletionCallback result */) |
612 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBVideoDecoder_ResetACK, | 613 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBVideoDecoder_ResetACK, |
613 ppapi::HostResource /* video_decoder */, | 614 ppapi::HostResource /* video_decoder */, |
614 int32_t /* PP_CompletionCallback result */) | 615 int32_t /* PP_CompletionCallback result */) |
615 | 616 |
616 // PPP_VideoDecoder_Dev. | 617 // PPP_VideoDecoder_Dev. |
617 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPVideoDecoder_ProvidePictureBuffers, | 618 IPC_MESSAGE_ROUTED4(PpapiMsg_PPPVideoDecoder_ProvidePictureBuffers, |
618 ppapi::HostResource /* video_decoder */, | 619 ppapi::HostResource /* video_decoder */, |
619 uint32_t /* requested number of buffers */, | 620 uint32_t /* requested number of buffers */, |
620 PP_Size /* dimensions of buffers */) | 621 PP_Size /* dimensions of buffers */, |
| 622 PP_VideoDecoder_TextureTarget_Dev /* texture_target */) |
621 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_DismissPictureBuffer, | 623 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_DismissPictureBuffer, |
622 ppapi::HostResource /* video_decoder */, | 624 ppapi::HostResource /* video_decoder */, |
623 int32_t /* picture buffer id */) | 625 int32_t /* picture buffer id */) |
624 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_PictureReady, | 626 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_PictureReady, |
625 ppapi::HostResource /* video_decoder */, | 627 ppapi::HostResource /* video_decoder */, |
626 PP_Picture_Dev /* output picture */) | 628 PP_Picture_Dev /* output picture */) |
627 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_NotifyError, | 629 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_NotifyError, |
628 ppapi::HostResource /* video_decoder */, | 630 ppapi::HostResource /* video_decoder */, |
629 PP_VideoDecodeError_Dev /* error */) | 631 PP_VideoDecodeError_Dev /* error */) |
630 #endif // !defined(OS_NACL) | 632 #endif // !defined(OS_NACL) |
(...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1328 // PPB_X509Certificate_Private | 1330 // PPB_X509Certificate_Private |
1329 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, | 1331 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, |
1330 std::vector<char> /* der */, | 1332 std::vector<char> /* der */, |
1331 bool /* succeeded */, | 1333 bool /* succeeded */, |
1332 ppapi::PPB_X509Certificate_Fields /* result */) | 1334 ppapi::PPB_X509Certificate_Fields /* result */) |
1333 | 1335 |
1334 // PPB_Font. | 1336 // PPB_Font. |
1335 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, | 1337 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, |
1336 std::string /* result */) | 1338 std::string /* result */) |
1337 #endif // !defined(OS_NACL) | 1339 #endif // !defined(OS_NACL) |
OLD | NEW |