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 |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3c98cf751671f9fcb33dd9cfee3541547f51e3e3 |
--- /dev/null |
+++ b/ppapi/thunk/ppb_content_decryptor_thunk.cc |
@@ -0,0 +1,102 @@ |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "ppapi/c/dev/ppb_content_decryptor_dev.h" |
+#include "ppapi/thunk/thunk.h" |
+#include "ppapi/thunk/enter.h" |
+#include "ppapi/thunk/ppb_instance_api.h" |
+ |
+namespace ppapi { |
+namespace thunk { |
+ |
+namespace { |
+ |
+void NeedKey(PP_Instance instance, |
+ PP_Var key_system, |
+ PP_Var session_id, |
+ PP_Resource init_data) { |
+ EnterInstance enter(instance); |
+ if (enter.succeeded()) { |
dmichael (off chromium)
2012/07/31 03:36:31
nit: no curly braces for 1-liners
Tom Finegan
2012/08/02 01:12:04
Done.
|
+ enter.functions()->NeedKey(instance, key_system, session_id, init_data); |
+ } |
+} |
+ |
+void KeyAdded(PP_Instance instance, |
+ PP_Var key_system, |
+ PP_Var session_id) { |
+ EnterInstance enter(instance); |
+ if (enter.succeeded()) { |
+ enter.functions()->KeyAdded(instance, key_system, session_id); |
+ } |
+} |
+ |
+void KeyMessage(PP_Instance instance, |
+ PP_Var key_system, |
+ PP_Var session_id, |
+ PP_Resource message, |
+ PP_Var default_url) { |
+ EnterInstance enter(instance); |
+ if (enter.succeeded()) { |
+ enter.functions()->KeyMessage(instance, key_system, session_id, message, |
+ default_url); |
+ } |
+} |
+ |
+void KeyError(PP_Instance instance, |
+ PP_Var key_system, |
+ PP_Var session_id, |
+ uint16_t media_error, |
+ uint16_t system_error) { |
+ EnterInstance enter(instance); |
+ if (enter.succeeded()) { |
+ enter.functions()->KeyError(instance, key_system, session_id, media_error, |
+ system_error); |
+ } |
+} |
+ |
+void DeliverBlock(PP_Instance instance, |
+ PP_Resource decrypted_block, |
+ PP_CompletionCallback callback) { |
+ EnterInstance enter(instance); |
+ if (enter.succeeded()) { |
+ enter.functions()->DeliverBlock(instance, decrypted_block, callback); |
+ } |
+} |
+ |
+void DeliverFrame(PP_Instance instance, |
+ PP_Resource decrypted_frame, |
+ PP_CompletionCallback callback) { |
+ EnterInstance enter(instance); |
+ if (enter.succeeded()) { |
+ enter.functions()->DeliverFrame(instance, decrypted_frame, callback); |
+ } |
+} |
+ |
+void DeliverSamples(PP_Instance instance, |
+ PP_Resource decrypted_samples, |
+ PP_CompletionCallback callback) { |
+ EnterInstance enter(instance); |
+ if (enter.succeeded()) { |
+ enter.functions()->DeliverSamples(instance, decrypted_samples, callback); |
+ } |
+} |
+ |
+const PPB_ContentDecryptor_Dev g_ppb_decryption_thunk = { |
+ &NeedKey, |
+ &KeyAdded, |
+ &KeyMessage, |
+ &KeyError, |
+ &DeliverBlock, |
+ &DeliverFrame, |
+ &DeliverSamples |
+}; |
+ |
+} // namespace |
+ |
+const PPB_ContentDecryptor_Dev* GetPPB_ContentDecryptor_Dev_0_1_Thunk() { |
+ return &g_ppb_decryption_thunk; |
+} |
+ |
+} // namespace thunk |
+} // namespace ppapi |