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

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

Issue 131653003: Support LoadSession() in MediaKeys and PPP_ContentDecryptor_Private interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase only Created 6 years, 10 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 <map> 6 #include <map>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after
654 IPC::PlatformFileForTransit /* handle */, 654 IPC::PlatformFileForTransit /* handle */,
655 int32_t /* result */) 655 int32_t /* result */)
656 656
657 // PPP_ContentDecryptor_Dev 657 // PPP_ContentDecryptor_Dev
658 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_Initialize, 658 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_Initialize,
659 PP_Instance /* instance */, 659 PP_Instance /* instance */,
660 ppapi::proxy::SerializedVar /* key_system, String */) 660 ppapi::proxy::SerializedVar /* key_system, String */)
661 IPC_MESSAGE_ROUTED4(PpapiMsg_PPPContentDecryptor_CreateSession, 661 IPC_MESSAGE_ROUTED4(PpapiMsg_PPPContentDecryptor_CreateSession,
662 PP_Instance /* instance */, 662 PP_Instance /* instance */,
663 uint32_t /* session_id */, 663 uint32_t /* session_id */,
664 ppapi::proxy::SerializedVar /* type, String */, 664 ppapi::proxy::SerializedVar /* content_type, String */,
665 ppapi::proxy::SerializedVar /* init_data, ArrayBuffer */) 665 ppapi::proxy::SerializedVar /* init_data, ArrayBuffer */)
666 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_LoadSession,
667 PP_Instance /* instance */,
668 uint32_t /* session_id */,
669 ppapi::proxy::SerializedVar /* web_session_id, String */)
666 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_UpdateSession, 670 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_UpdateSession,
667 PP_Instance /* instance */, 671 PP_Instance /* instance */,
668 uint32_t /* session_id */, 672 uint32_t /* session_id */,
669 ppapi::proxy::SerializedVar /* response, ArrayBuffer */) 673 ppapi::proxy::SerializedVar /* response, ArrayBuffer */)
670 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_ReleaseSession, 674 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_ReleaseSession,
671 PP_Instance /* instance */, 675 PP_Instance /* instance */,
672 uint32_t /* session_id */) 676 uint32_t /* session_id */)
673 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_Decrypt, 677 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_Decrypt,
674 PP_Instance /* instance */, 678 PP_Instance /* instance */,
675 ppapi::proxy::PPPDecryptor_Buffer /* buffer */, 679 ppapi::proxy::PPPDecryptor_Buffer /* buffer */,
(...skipping 1389 matching lines...) Expand 10 before | Expand all | Expand 10 after
2065 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2069 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2066 PP_TalkPermission /* permission */) 2070 PP_TalkPermission /* permission */)
2067 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2071 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2068 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2072 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2069 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2073 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2070 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2074 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2071 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2075 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2072 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2076 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2073 2077
2074 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2078 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
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