OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 16 matching lines...) Expand all Loading... |
27 #include "ppapi/c/pp_point.h" | 27 #include "ppapi/c/pp_point.h" |
28 #include "ppapi/c/pp_rect.h" | 28 #include "ppapi/c/pp_rect.h" |
29 #include "ppapi/c/pp_resource.h" | 29 #include "ppapi/c/pp_resource.h" |
30 #include "ppapi/c/pp_size.h" | 30 #include "ppapi/c/pp_size.h" |
31 #include "ppapi/c/dev/pp_video_dev.h" | 31 #include "ppapi/c/dev/pp_video_dev.h" |
32 #include "ppapi/c/private/ppb_tcp_socket_private.h" | 32 #include "ppapi/c/private/ppb_tcp_socket_private.h" |
33 #include "ppapi/proxy/ppapi_param_traits.h" | 33 #include "ppapi/proxy/ppapi_param_traits.h" |
34 #include "ppapi/proxy/ppapi_proxy_export.h" | 34 #include "ppapi/proxy/ppapi_proxy_export.h" |
35 #include "ppapi/proxy/serialized_flash_menu.h" | 35 #include "ppapi/proxy/serialized_flash_menu.h" |
36 #include "ppapi/proxy/serialized_structs.h" | 36 #include "ppapi/proxy/serialized_structs.h" |
| 37 #include "ppapi/shared_impl/input_event_impl.h" |
37 #include "ppapi/shared_impl/ppapi_preferences.h" | 38 #include "ppapi/shared_impl/ppapi_preferences.h" |
38 #include "ppapi/shared_impl/ppb_input_event_shared.h" | 39 #include "ppapi/shared_impl/url_request_info_impl.h" |
39 #include "ppapi/shared_impl/ppb_url_request_info_shared.h" | |
40 | 40 |
41 #undef IPC_MESSAGE_EXPORT | 41 #undef IPC_MESSAGE_EXPORT |
42 #define IPC_MESSAGE_EXPORT PPAPI_PROXY_EXPORT | 42 #define IPC_MESSAGE_EXPORT PPAPI_PROXY_EXPORT |
43 | 43 |
44 #define IPC_MESSAGE_START PpapiMsgStart | 44 #define IPC_MESSAGE_START PpapiMsgStart |
45 | 45 |
46 IPC_ENUM_TRAITS(PP_InputEvent_Type) | 46 IPC_ENUM_TRAITS(PP_InputEvent_Type) |
47 IPC_ENUM_TRAITS(PP_InputEvent_MouseButton) | 47 IPC_ENUM_TRAITS(PP_InputEvent_MouseButton) |
48 IPC_ENUM_TRAITS(PP_TextInput_Type) | 48 IPC_ENUM_TRAITS(PP_TextInput_Type) |
49 IPC_ENUM_TRAITS(PP_VideoDecoder_Profile) | 49 IPC_ENUM_TRAITS(PP_VideoDecoder_Profile) |
(...skipping 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1063 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1063 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
1064 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1064 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
1065 ppapi::HostResource /* video_decoder */, | 1065 ppapi::HostResource /* video_decoder */, |
1066 int32_t /* picture buffer id */) | 1066 int32_t /* picture buffer id */) |
1067 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1067 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
1068 ppapi::HostResource /* video_decoder */) | 1068 ppapi::HostResource /* video_decoder */) |
1069 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1069 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
1070 ppapi::HostResource /* video_decoder */) | 1070 ppapi::HostResource /* video_decoder */) |
1071 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1071 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
1072 ppapi::HostResource /* video_decoder */) | 1072 ppapi::HostResource /* video_decoder */) |
OLD | NEW |