Chromium Code Reviews| Index: webkit/plugins/ppapi/ppapi_plugin_instance.h |
| diff --git a/webkit/plugins/ppapi/ppapi_plugin_instance.h b/webkit/plugins/ppapi/ppapi_plugin_instance.h |
| index 048cce46d348cafa9286f52765f68b8cba365fae..2be5479e2e23643bb5a3f24e3c619174baa9603c 100644 |
| --- a/webkit/plugins/ppapi/ppapi_plugin_instance.h |
| +++ b/webkit/plugins/ppapi/ppapi_plugin_instance.h |
| @@ -10,6 +10,7 @@ |
| #include <vector> |
| #include "base/basictypes.h" |
| +#include "base/callback.h" |
| #include "base/compiler_specific.h" |
| #include "base/memory/ref_counted.h" |
| #include "base/memory/scoped_ptr.h" |
| @@ -17,6 +18,8 @@ |
| #include "base/string16.h" |
| #include "googleurl/src/gurl.h" |
| #include "ppapi/c/dev/pp_cursor_type_dev.h" |
| +#include "ppapi/c/dev/ppb_content_decryptor_dev.h" |
| +#include "ppapi/c/dev/ppp_content_decryptor_dev.h" |
| #include "ppapi/c/dev/ppp_printing_dev.h" |
| #include "ppapi/c/dev/ppp_find_dev.h" |
| #include "ppapi/c/dev/ppp_selection_dev.h" |
| @@ -236,6 +239,18 @@ class WEBKIT_PLUGINS_EXPORT PluginInstance : |
| void Graphics3DContextLost(); |
| + // Provides access to PPP_ContentDecryptor_Dev. |
| + typedef base::Callback<void(void*, int)> CDMStatusCB; |
|
xhwang
2012/08/01 18:55:38
nit: CdmStatusCB?
Tom Finegan
2012/08/02 01:12:04
Yeah-- this is just a placeholder typedef to be re
|
| + bool GenerateKeyRequest(const std::string& key_system, |
| + const std::string& init_data); |
| + bool AddKey(const std::string& session_id, |
| + const std::string& key); |
| + bool CancelKeyRequest(const std::string& session_id); |
| + bool Decrypt(const std::string& encypted_block, |
| + const CDMStatusCB& callback); |
| + bool DecryptAndDecode(const std::string& encypted_block, |
| + const CDMStatusCB& callback); |
| + |
| // There are 2 implementations of the fullscreen interface |
| // PPB_FlashFullscreen is used by Pepper Flash. |
| // PPB_Fullscreen is intended for other applications including NaCl. |
| @@ -408,6 +423,32 @@ class WEBKIT_PLUGINS_EXPORT PluginInstance : |
| virtual PP_Var GetPluginInstanceURL( |
| PP_Instance instance, |
| PP_URLComponents_Dev* components) OVERRIDE; |
| + virtual void NeedKey(PP_Instance instance, |
| + PP_Var key_system, |
| + PP_Var session_id, |
| + PP_Var init_data) OVERRIDE; |
| + virtual void KeyAdded(PP_Instance instance, |
| + PP_Var key_system, |
| + PP_Var session_id) OVERRIDE; |
| + virtual void KeyMessage(PP_Instance instance, |
| + PP_Var key_system, |
| + PP_Var session_id, |
| + PP_Resource message, |
| + PP_Var default_url) OVERRIDE; |
| + virtual void KeyError(PP_Instance instance, |
| + PP_Var key_system, |
| + PP_Var session_id, |
| + int32_t media_error, |
| + int32_t system_error) OVERRIDE; |
| + virtual void DeliverBlock(PP_Instance instance, |
| + PP_Resource decrypted_block, |
| + PP_CompletionCallback callback) OVERRIDE; |
| + virtual void DeliverFrame(PP_Instance instance, |
| + PP_Resource decrypted_frame, |
| + PP_CompletionCallback callback) OVERRIDE; |
| + virtual void DeliverSamples(PP_Instance instance, |
| + PP_Resource decrypted_samples, |
| + PP_CompletionCallback callback) OVERRIDE; |
| // Reset this instance as proxied. Resets cached interfaces to point to the |
| // proxy and re-sends DidCreate, DidChangeView, and HandleDocumentLoad (if |
| @@ -424,6 +465,7 @@ class WEBKIT_PLUGINS_EXPORT PluginInstance : |
| PluginModule* module, |
| ::ppapi::PPP_Instance_Combined* instance_interface); |
| + bool LoadContentDecryptionModuleInterface(); |
| bool LoadFindInterface(); |
| bool LoadInputEventInterface(); |
| bool LoadMessagingInterface(); |
| @@ -551,6 +593,7 @@ class WEBKIT_PLUGINS_EXPORT PluginInstance : |
| scoped_ptr< ::ppapi::thunk::ResourceCreationAPI> resource_creation_; |
| // The plugin-provided interfaces. |
| + const PPP_ContentDecryptor_Dev* plugin_decryption_interface_; |
| const PPP_Find_Dev* plugin_find_interface_; |
| const PPP_InputEvent* plugin_input_event_interface_; |
| const PPP_Messaging* plugin_messaging_interface_; |