Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(328)

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 7687005: Create ppapi_proxy.dll. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/proxy/plugin_var_tracker.h ('k') | ppapi/proxy/ppapi_param_traits.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 12 matching lines...) Expand all
23 #include "ppapi/c/pp_file_info.h" 23 #include "ppapi/c/pp_file_info.h"
24 #include "ppapi/c/pp_instance.h" 24 #include "ppapi/c/pp_instance.h"
25 #include "ppapi/c/pp_module.h" 25 #include "ppapi/c/pp_module.h"
26 #include "ppapi/c/pp_point.h" 26 #include "ppapi/c/pp_point.h"
27 #include "ppapi/c/pp_rect.h" 27 #include "ppapi/c/pp_rect.h"
28 #include "ppapi/c/pp_resource.h" 28 #include "ppapi/c/pp_resource.h"
29 #include "ppapi/c/pp_size.h" 29 #include "ppapi/c/pp_size.h"
30 #include "ppapi/c/dev/pp_video_dev.h" 30 #include "ppapi/c/dev/pp_video_dev.h"
31 #include "ppapi/c/private/ppb_flash_tcp_socket.h" 31 #include "ppapi/c/private/ppb_flash_tcp_socket.h"
32 #include "ppapi/proxy/ppapi_param_traits.h" 32 #include "ppapi/proxy/ppapi_param_traits.h"
33 #include "ppapi/proxy/ppapi_proxy_export.h"
33 #include "ppapi/proxy/serialized_flash_menu.h" 34 #include "ppapi/proxy/serialized_flash_menu.h"
34 #include "ppapi/proxy/serialized_structs.h" 35 #include "ppapi/proxy/serialized_structs.h"
35 #include "ppapi/shared_impl/input_event_impl.h" 36 #include "ppapi/shared_impl/input_event_impl.h"
36 #include "ppapi/shared_impl/ppapi_preferences.h" 37 #include "ppapi/shared_impl/ppapi_preferences.h"
37 #include "ppapi/shared_impl/url_request_info_impl.h" 38 #include "ppapi/shared_impl/url_request_info_impl.h"
38 39
40 #undef IPC_MESSAGE_EXPORT
41 #define IPC_MESSAGE_EXPORT PPAPI_PROXY_EXPORT
42
39 #define IPC_MESSAGE_START PpapiMsgStart 43 #define IPC_MESSAGE_START PpapiMsgStart
40 44
41 IPC_ENUM_TRAITS(PP_InputEvent_Type) 45 IPC_ENUM_TRAITS(PP_InputEvent_Type)
42 IPC_ENUM_TRAITS(PP_InputEvent_MouseButton) 46 IPC_ENUM_TRAITS(PP_InputEvent_MouseButton)
43 IPC_ENUM_TRAITS(PP_VideoDecodeError_Dev) 47 IPC_ENUM_TRAITS(PP_VideoDecodeError_Dev)
44 48
45 IPC_STRUCT_TRAITS_BEGIN(PP_Point) 49 IPC_STRUCT_TRAITS_BEGIN(PP_Point)
46 IPC_STRUCT_TRAITS_MEMBER(x) 50 IPC_STRUCT_TRAITS_MEMBER(x)
47 IPC_STRUCT_TRAITS_MEMBER(y) 51 IPC_STRUCT_TRAITS_MEMBER(y)
48 IPC_STRUCT_TRAITS_END() 52 IPC_STRUCT_TRAITS_END()
(...skipping 978 matching lines...) Expand 10 before | Expand all | Expand 10 after
1027 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) 1031 std::vector<PP_PictureBuffer_Dev> /* picture buffers */)
1028 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, 1032 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer,
1029 ppapi::HostResource /* video_decoder */, 1033 ppapi::HostResource /* video_decoder */,
1030 int32_t /* picture buffer id */) 1034 int32_t /* picture buffer id */)
1031 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, 1035 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush,
1032 ppapi::HostResource /* video_decoder */) 1036 ppapi::HostResource /* video_decoder */)
1033 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, 1037 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset,
1034 ppapi::HostResource /* video_decoder */) 1038 ppapi::HostResource /* video_decoder */)
1035 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, 1039 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy,
1036 ppapi::HostResource /* video_decoder */) 1040 ppapi::HostResource /* video_decoder */)
OLDNEW
« no previous file with comments | « ppapi/proxy/plugin_var_tracker.h ('k') | ppapi/proxy/ppapi_param_traits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698