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

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

Issue 813683005: Add |legacy_destination_url| back to SessionMessage for EME (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: changes Created 5 years, 11 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 <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 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after
1127 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_PromiseResolvedWithSession, 1127 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_PromiseResolvedWithSession,
1128 PP_Instance /* instance */, 1128 PP_Instance /* instance */,
1129 uint32_t /* promise_id */, 1129 uint32_t /* promise_id */,
1130 ppapi::proxy::SerializedVar /* web_session_id, String */) 1130 ppapi::proxy::SerializedVar /* web_session_id, String */)
1131 IPC_MESSAGE_ROUTED5(PpapiHostMsg_PPBInstance_PromiseRejected, 1131 IPC_MESSAGE_ROUTED5(PpapiHostMsg_PPBInstance_PromiseRejected,
1132 PP_Instance /* instance */, 1132 PP_Instance /* instance */,
1133 uint32_t /* promise_id */, 1133 uint32_t /* promise_id */,
1134 PP_CdmExceptionCode /* exception_code */, 1134 PP_CdmExceptionCode /* exception_code */,
1135 int32_t /* system_code */, 1135 int32_t /* system_code */,
1136 ppapi::proxy::SerializedVar /* error_description, String */) 1136 ppapi::proxy::SerializedVar /* error_description, String */)
1137 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBInstance_SessionMessage, 1137 IPC_MESSAGE_ROUTED5(PpapiHostMsg_PPBInstance_SessionMessage,
1138 PP_Instance /* instance */, 1138 PP_Instance /* instance */,
1139 ppapi::proxy::SerializedVar /* web_session_id, String */, 1139 ppapi::proxy::SerializedVar /* web_session_id, String */,
1140 PP_CdmMessageType /* message_type */, 1140 PP_CdmMessageType /* message_type */,
1141 ppapi::proxy::SerializedVar /* message, ArrayBuffer */) 1141 ppapi::proxy::SerializedVar /* message, ArrayBuffer */,
1142 ppapi::proxy::SerializedVar /* destination_url, String */)
1142 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBInstance_SessionKeysChange, 1143 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBInstance_SessionKeysChange,
1143 PP_Instance /* instance */, 1144 PP_Instance /* instance */,
1144 std::string /* web_session_id */, 1145 std::string /* web_session_id */,
1145 PP_Bool /* has_additional_usable_key */, 1146 PP_Bool /* has_additional_usable_key */,
1146 std::vector<PP_KeyInformation> /* key_information */) 1147 std::vector<PP_KeyInformation> /* key_information */)
1147 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_SessionExpirationChange, 1148 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_SessionExpirationChange,
1148 PP_Instance /* instance */, 1149 PP_Instance /* instance */,
1149 std::string /* web_session_id */, 1150 std::string /* web_session_id */,
1150 PP_Time /* new_expiry_time */) 1151 PP_Time /* new_expiry_time */)
1151 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_SessionClosed, 1152 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_SessionClosed,
(...skipping 1132 matching lines...) Expand 10 before | Expand all | Expand 10 after
2284 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2285 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2285 PP_TalkPermission /* permission */) 2286 PP_TalkPermission /* permission */)
2286 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2287 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2287 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2288 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2288 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2289 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2289 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2290 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2290 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2291 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2291 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2292 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2292 2293
2293 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2294 #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/ppb_instance_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698