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

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

Issue 11023004: Update PPP side of Pepper CDM API to support video decoding. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased, CQ'ing. Created 8 years, 2 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
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 606 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 ppapi::proxy::SerializedVar /* session_id, String */, 617 ppapi::proxy::SerializedVar /* session_id, String */,
618 ppapi::proxy::SerializedVar /* key, ArrayBuffer */, 618 ppapi::proxy::SerializedVar /* key, ArrayBuffer */,
619 ppapi::proxy::SerializedVar /* init_data, ArrayBuffer */) 619 ppapi::proxy::SerializedVar /* init_data, ArrayBuffer */)
620 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_CancelKeyRequest, 620 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_CancelKeyRequest,
621 PP_Instance /* instance */, 621 PP_Instance /* instance */,
622 ppapi::proxy::SerializedVar /* session_id, String */) 622 ppapi::proxy::SerializedVar /* session_id, String */)
623 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_Decrypt, 623 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_Decrypt,
624 PP_Instance /* instance */, 624 PP_Instance /* instance */,
625 ppapi::proxy::PPPDecryptor_Buffer /* buffer */, 625 ppapi::proxy::PPPDecryptor_Buffer /* buffer */,
626 std::string /* serialized_block_info */) 626 std::string /* serialized_block_info */)
627 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_DecryptAndDecode, 627 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_DecryptAndDecodeFrame,
628 PP_Instance /* instance */, 628 PP_Instance /* instance */,
629 ppapi::proxy::PPPDecryptor_Buffer /* buffer */, 629 ppapi::proxy::PPPDecryptor_Buffer /* buffer */,
630 std::string /* serialized_block_info */) 630 std::string /* serialized_block_info */)
631 631
632 // PPB_Talk 632 // PPB_Talk
633 IPC_MESSAGE_ROUTED3( 633 IPC_MESSAGE_ROUTED3(
634 PpapiMsg_PPBTalk_GetPermissionACK, 634 PpapiMsg_PPBTalk_GetPermissionACK,
635 uint32 /* plugin_dispatcher_id */, 635 uint32 /* plugin_dispatcher_id */,
636 PP_Resource /* resource */, 636 PP_Resource /* resource */,
637 int32_t /* result */) 637 int32_t /* result */)
(...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after
1575 1575
1576 // Reply to a RequestMemory call. This supplies the shared memory handle. The 1576 // Reply to a RequestMemory call. This supplies the shared memory handle. The
1577 // actual handle is passed in the ReplyParams struct. 1577 // actual handle is passed in the ReplyParams struct.
1578 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Gamepad_SendMemory) 1578 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Gamepad_SendMemory)
1579 1579
1580 // Printing. 1580 // Printing.
1581 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_Create) 1581 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_Create)
1582 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_GetDefaultPrintSettings) 1582 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_GetDefaultPrintSettings)
1583 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Printing_GetDefaultPrintSettingsReply, 1583 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Printing_GetDefaultPrintSettingsReply,
1584 PP_PrintSettings_Dev /* print_settings */) 1584 PP_PrintSettings_Dev /* print_settings */)
OLDNEW
« no previous file with comments | « ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c ('k') | ppapi/proxy/ppp_content_decryptor_private_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698