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

Unified Diff: ppapi/thunk/ppb_content_decryptor_thunk.cc

Issue 10836038: Call CDMWrapper from PpapiDecryptor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add PP_DecryptionBuffer_Dev and update Decrypt() PPP call. Created 8 years, 4 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
Index: ppapi/thunk/ppb_content_decryptor_thunk.cc
diff --git a/ppapi/thunk/ppb_content_decryptor_thunk.cc b/ppapi/thunk/ppb_content_decryptor_thunk.cc
index 3c98cf751671f9fcb33dd9cfee3541547f51e3e3..905ee323551c1ea970075ef900adb80b154c1a04 100644
--- a/ppapi/thunk/ppb_content_decryptor_thunk.cc
+++ b/ppapi/thunk/ppb_content_decryptor_thunk.cc
@@ -57,10 +57,10 @@ void KeyError(PP_Instance instance,
void DeliverBlock(PP_Instance instance,
PP_Resource decrypted_block,
- PP_CompletionCallback callback) {
+ uint32_t id) {
EnterInstance enter(instance);
if (enter.succeeded()) {
- enter.functions()->DeliverBlock(instance, decrypted_block, callback);
+ enter.functions()->DeliverBlock(instance, decrypted_block, id);
}
}

Powered by Google App Engine
This is Rietveld 408576698