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

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

Issue 9609008: Implemented Browser Plugin (NOT FOR REVIEW) (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: New BrowserPluginSerializationRules. Removed unnecessary changes to VarTracker Created 8 years, 7 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 | « content/renderer/render_view_impl.cc ('k') | ppapi/proxy/ppb_graphics_3d_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) 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 759 matching lines...) Expand 10 before | Expand all | Expand 10 after
770 bool /* clip_specified */, 770 bool /* clip_specified */,
771 PP_Rect /* clip */, 771 PP_Rect /* clip */,
772 PP_Point /* amount */) 772 PP_Point /* amount */)
773 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics2D_ReplaceContents, 773 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics2D_ReplaceContents,
774 ppapi::HostResource /* graphics_2d */, 774 ppapi::HostResource /* graphics_2d */,
775 ppapi::HostResource /* image_data */) 775 ppapi::HostResource /* image_data */)
776 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics2D_Flush, 776 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics2D_Flush,
777 ppapi::HostResource /* graphics_2d */) 777 ppapi::HostResource /* graphics_2d */)
778 778
779 // PPB_Graphics3D. 779 // PPB_Graphics3D.
780 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_Create, 780 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics3D_Create,
781 PP_Instance /* instance */, 781 PP_Instance /* instance */,
782 ppapi::HostResource /* share_context */,
782 std::vector<int32_t> /* attrib_list */, 783 std::vector<int32_t> /* attrib_list */,
783 ppapi::HostResource /* result */) 784 ppapi::HostResource /* result */)
784 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBGraphics3D_InitCommandBuffer, 785 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBGraphics3D_InitCommandBuffer,
785 ppapi::HostResource /* context */) 786 ppapi::HostResource /* context */)
786 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer, 787 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer,
787 ppapi::HostResource /* context */, 788 ppapi::HostResource /* context */,
788 int32 /* transfer_buffer_id */) 789 int32 /* transfer_buffer_id */)
789 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_GetState, 790 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_GetState,
790 ppapi::HostResource /* context */, 791 ppapi::HostResource /* context */,
791 gpu::CommandBuffer::State /* state */) 792 gpu::CommandBuffer::State /* state */)
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
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)
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | ppapi/proxy/ppb_graphics_3d_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698