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

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: Set PPP interface version to 0.2 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 603 matching lines...) Expand 10 before | Expand all | Expand 10 after
614 ppapi::proxy::SerializedVar /* session_id, String */, 614 ppapi::proxy::SerializedVar /* session_id, String */,
615 ppapi::proxy::SerializedVar /* key, ArrayBuffer */, 615 ppapi::proxy::SerializedVar /* key, ArrayBuffer */,
616 ppapi::proxy::SerializedVar /* init_data, ArrayBuffer */) 616 ppapi::proxy::SerializedVar /* init_data, ArrayBuffer */)
617 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_CancelKeyRequest, 617 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_CancelKeyRequest,
618 PP_Instance /* instance */, 618 PP_Instance /* instance */,
619 ppapi::proxy::SerializedVar /* session_id, String */) 619 ppapi::proxy::SerializedVar /* session_id, String */)
620 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_Decrypt, 620 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_Decrypt,
621 PP_Instance /* instance */, 621 PP_Instance /* instance */,
622 ppapi::proxy::PPPDecryptor_Buffer /* buffer */, 622 ppapi::proxy::PPPDecryptor_Buffer /* buffer */,
623 std::string /* serialized_block_info */) 623 std::string /* serialized_block_info */)
624 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_DecryptAndDecode, 624 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_DecryptAndDecodeFrame,
625 PP_Instance /* instance */, 625 PP_Instance /* instance */,
626 ppapi::proxy::PPPDecryptor_Buffer /* buffer */, 626 ppapi::proxy::PPPDecryptor_Buffer /* buffer */,
627 std::string /* serialized_block_info */) 627 std::string /* serialized_block_info */)
628 628
629 // PPB_Talk 629 // PPB_Talk
630 IPC_MESSAGE_ROUTED3( 630 IPC_MESSAGE_ROUTED3(
631 PpapiMsg_PPBTalk_GetPermissionACK, 631 PpapiMsg_PPBTalk_GetPermissionACK,
632 uint32 /* plugin_dispatcher_id */, 632 uint32 /* plugin_dispatcher_id */,
633 PP_Resource /* resource */, 633 PP_Resource /* resource */,
634 int32_t /* result */) 634 int32_t /* result */)
(...skipping 933 matching lines...) Expand 10 before | Expand all | Expand 10 after
1568 1568
1569 // Reply to a RequestMemory call. This supplies the shared memory handle. The 1569 // Reply to a RequestMemory call. This supplies the shared memory handle. The
1570 // actual handle is passed in the ReplyParams struct. 1570 // actual handle is passed in the ReplyParams struct.
1571 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Gamepad_SendMemory) 1571 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Gamepad_SendMemory)
1572 1572
1573 // Printing. 1573 // Printing.
1574 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_Create) 1574 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_Create)
1575 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_GetDefaultPrintSettings) 1575 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_GetDefaultPrintSettings)
1576 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Printing_GetDefaultPrintSettingsReply, 1576 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Printing_GetDefaultPrintSettingsReply,
1577 PP_PrintSettings_Dev /* print_settings */) 1577 PP_PrintSettings_Dev /* print_settings */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698