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

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

Issue 24192004: Changes to the EME Pepper API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 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
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/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after
650 650
651 #if !defined(OS_NACL) && !defined(NACL_WIN64) 651 #if !defined(OS_NACL) && !defined(NACL_WIN64)
652 // PPB_Broker. 652 // PPB_Broker.
653 IPC_MESSAGE_ROUTED3( 653 IPC_MESSAGE_ROUTED3(
654 PpapiMsg_PPBBroker_ConnectComplete, 654 PpapiMsg_PPBBroker_ConnectComplete,
655 ppapi::HostResource /* broker */, 655 ppapi::HostResource /* broker */,
656 IPC::PlatformFileForTransit /* handle */, 656 IPC::PlatformFileForTransit /* handle */,
657 int32_t /* result */) 657 int32_t /* result */)
658 658
659 // PPP_ContentDecryptor_Dev 659 // PPP_ContentDecryptor_Dev
660 IPC_MESSAGE_ROUTED4(PpapiMsg_PPPContentDecryptor_GenerateKeyRequest, 660 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_Initialize,
661 PP_Instance /* instance */, 661 PP_Instance /* instance */,
662 ppapi::proxy::SerializedVar /* key_system, String */, 662 ppapi::proxy::SerializedVar /* key_system, String */)
663 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_GenerateKeyRequest,
664 PP_Instance /* instance */,
663 ppapi::proxy::SerializedVar /* type, String */, 665 ppapi::proxy::SerializedVar /* type, String */,
664 ppapi::proxy::SerializedVar /* init_data, ArrayBuffer */) 666 ppapi::proxy::SerializedVar /* init_data, ArrayBuffer */)
665 IPC_MESSAGE_ROUTED4(PpapiMsg_PPPContentDecryptor_AddKey, 667 IPC_MESSAGE_ROUTED4(PpapiMsg_PPPContentDecryptor_AddKey,
666 PP_Instance /* instance */, 668 PP_Instance /* instance */,
667 ppapi::proxy::SerializedVar /* session_id, String */, 669 ppapi::proxy::SerializedVar /* session_id, String */,
668 ppapi::proxy::SerializedVar /* key, ArrayBuffer */, 670 ppapi::proxy::SerializedVar /* key, ArrayBuffer */,
669 ppapi::proxy::SerializedVar /* init_data, ArrayBuffer */) 671 ppapi::proxy::SerializedVar /* init_data, ArrayBuffer */)
670 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_CancelKeyRequest, 672 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_CancelKeyRequest,
671 PP_Instance /* instance */, 673 PP_Instance /* instance */,
672 ppapi::proxy::SerializedVar /* session_id, String */) 674 ppapi::proxy::SerializedVar /* session_id, String */)
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
1026 PP_Instance /* instance */, 1028 PP_Instance /* instance */,
1027 uint32_t /* size */, 1029 uint32_t /* size */,
1028 ppapi::HostResource /* result_resource */, 1030 ppapi::HostResource /* result_resource */,
1029 ppapi::proxy::SerializedHandle /* result_shm_handle */) 1031 ppapi::proxy::SerializedHandle /* result_shm_handle */)
1030 1032
1031 // PPB_ContentDecryptor_Dev messages handled in PPB_Instance_Proxy. 1033 // PPB_ContentDecryptor_Dev messages handled in PPB_Instance_Proxy.
1032 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBInstance_NeedKey, 1034 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBInstance_NeedKey,
1033 PP_Instance /* instance */, 1035 PP_Instance /* instance */,
1034 ppapi::proxy::SerializedVar /* key_system, String */, 1036 ppapi::proxy::SerializedVar /* key_system, String */,
1035 ppapi::proxy::SerializedVar /* session_id, String */, 1037 ppapi::proxy::SerializedVar /* session_id, String */,
1036 ppapi::proxy::SerializedVar /* init_data, ArrayBuffer */) 1038 ppapi::proxy::SerializedVar /* init_data, ArrayBuffer */)
xhwang 2013/09/18 00:07:18 Shall we remove this? I ran grep and got the foll
jrummell 2013/09/18 21:01:15 Removed it in the .idl file, but looks like there
1037 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_KeyAdded, 1039 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_KeyAdded,
1038 PP_Instance /* instance */, 1040 PP_Instance /* instance */,
1039 ppapi::proxy::SerializedVar /* key_system, String */, 1041 ppapi::proxy::SerializedVar /* key_system, String */,
1040 ppapi::proxy::SerializedVar /* session_id, String */) 1042 ppapi::proxy::SerializedVar /* session_id, String */)
1041 IPC_MESSAGE_ROUTED5(PpapiHostMsg_PPBInstance_KeyMessage, 1043 IPC_MESSAGE_ROUTED5(PpapiHostMsg_PPBInstance_KeyMessage,
1042 PP_Instance /* instance */, 1044 PP_Instance /* instance */,
1043 ppapi::proxy::SerializedVar /* key_system, String */, 1045 ppapi::proxy::SerializedVar /* key_system, String */,
1044 ppapi::proxy::SerializedVar /* session_id, String */, 1046 ppapi::proxy::SerializedVar /* session_id, String */,
1045 ppapi::proxy::SerializedVar /* message, ArrayBuffer */, 1047 ppapi::proxy::SerializedVar /* message, ArrayBuffer */,
1046 ppapi::proxy::SerializedVar /* default_url, String */) 1048 ppapi::proxy::SerializedVar /* default_url, String */)
(...skipping 988 matching lines...) Expand 10 before | Expand all | Expand 10 after
2035 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2037 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2036 PP_TalkPermission /* permission */) 2038 PP_TalkPermission /* permission */)
2037 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2039 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2038 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2040 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2039 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2041 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2040 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2042 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2041 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2043 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2042 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2044 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2043 2045
2044 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2046 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698