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

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

Issue 8414054: Hello Pepper API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 1 month 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/interface_list.cc ('k') | ppapi/proxy/ppb_hello_proxy.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 827 matching lines...) Expand 10 before | Expand all | Expand 10 after
838 838
839 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBGraphics3D_GetTransferBuffer, 839 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBGraphics3D_GetTransferBuffer,
840 ppapi::HostResource /* context */, 840 ppapi::HostResource /* context */,
841 int32 /* id */, 841 int32 /* id */,
842 base::SharedMemoryHandle /* transfer_buffer */, 842 base::SharedMemoryHandle /* transfer_buffer */,
843 uint32 /* size */) 843 uint32 /* size */)
844 844
845 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers, 845 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers,
846 ppapi::HostResource /* graphics_3d */) 846 ppapi::HostResource /* graphics_3d */)
847 847
848 // PPB_Hello.
849 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBHello_Create,
850 PP_Instance /* instance */,
851 ppapi::HostResource /* result */)
852
853 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBHello_Hello,
854 ppapi::HostResource /* context */)
855
856 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBHello_WhoAreYou,
857 ppapi::HostResource /* context */,
858 ppapi::proxy::SerializedVar /* result */)
859
848 // PPB_Instance. 860 // PPB_Instance.
849 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetWindowObject, 861 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetWindowObject,
850 PP_Instance /* instance */, 862 PP_Instance /* instance */,
851 ppapi::proxy::SerializedVar /* result */) 863 ppapi::proxy::SerializedVar /* result */)
852 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetOwnerElementObject, 864 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetOwnerElementObject,
853 PP_Instance /* instance */, 865 PP_Instance /* instance */,
854 ppapi::proxy::SerializedVar /* result */) 866 ppapi::proxy::SerializedVar /* result */)
855 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_BindGraphics, 867 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_BindGraphics,
856 PP_Instance /* instance */, 868 PP_Instance /* instance */,
857 ppapi::HostResource /* device */, 869 ppapi::HostResource /* device */,
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
1107 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) 1119 std::vector<PP_PictureBuffer_Dev> /* picture buffers */)
1108 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, 1120 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer,
1109 ppapi::HostResource /* video_decoder */, 1121 ppapi::HostResource /* video_decoder */,
1110 int32_t /* picture buffer id */) 1122 int32_t /* picture buffer id */)
1111 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, 1123 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush,
1112 ppapi::HostResource /* video_decoder */) 1124 ppapi::HostResource /* video_decoder */)
1113 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, 1125 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset,
1114 ppapi::HostResource /* video_decoder */) 1126 ppapi::HostResource /* video_decoder */)
1115 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, 1127 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy,
1116 ppapi::HostResource /* video_decoder */) 1128 ppapi::HostResource /* video_decoder */)
OLDNEW
« no previous file with comments | « ppapi/proxy/interface_list.cc ('k') | ppapi/proxy/ppb_hello_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698