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

Unified Diff: ppapi/thunk/ppb_content_decryptor_private_thunk.cc

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/proxy/ppb_instance_proxy.cc ('k') | ppapi/thunk/ppb_instance_api.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/thunk/ppb_content_decryptor_private_thunk.cc
diff --git a/ppapi/thunk/ppb_content_decryptor_private_thunk.cc b/ppapi/thunk/ppb_content_decryptor_private_thunk.cc
index 6f359f3acc8eec535d625a36c32d2ae77db9bc3d..fd2adde5422f5d1bb8e8015c60fadfc262a1f568 100644
--- a/ppapi/thunk/ppb_content_decryptor_private_thunk.cc
+++ b/ppapi/thunk/ppb_content_decryptor_private_thunk.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// From private/ppb_content_decryptor_private.idl modified Wed Jan 7 16:48:10
+// From private/ppb_content_decryptor_private.idl modified Mon Jan 12 17:33:29
// 2015.
#include "ppapi/c/pp_errors.h"
@@ -51,13 +51,14 @@ void PromiseRejected(PP_Instance instance,
void SessionMessage(PP_Instance instance,
struct PP_Var web_session_id,
PP_CdmMessageType message_type,
- struct PP_Var message) {
+ struct PP_Var message,
+ struct PP_Var legacy_destination_url) {
VLOG(4) << "PPB_ContentDecryptor_Private::SessionMessage()";
EnterInstance enter(instance);
if (enter.failed())
return;
enter.functions()->SessionMessage(instance, web_session_id, message_type,
- message);
+ message, legacy_destination_url);
}
void SessionKeysChange(PP_Instance instance,
« no previous file with comments | « ppapi/proxy/ppb_instance_proxy.cc ('k') | ppapi/thunk/ppb_instance_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698