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

Unified Diff: mojo/examples/pepper_container_app/plugin_instance.h

Issue 496143002: Update Pepper interface for EME (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove vector.data() Created 6 years, 3 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 | « media/cdm/ppapi/cdm_wrapper.h ('k') | mojo/examples/pepper_container_app/plugin_instance.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/examples/pepper_container_app/plugin_instance.h
diff --git a/mojo/examples/pepper_container_app/plugin_instance.h b/mojo/examples/pepper_container_app/plugin_instance.h
index f76621a0eea7f276b884d41b62bf4a4d90374662..a128334964af9f13a0f15761601e6a1c7986b919 100644
--- a/mojo/examples/pepper_container_app/plugin_instance.h
+++ b/mojo/examples/pepper_container_app/plugin_instance.h
@@ -118,6 +118,9 @@ class PluginInstance : public ppapi::thunk::PPB_Instance_API {
virtual void PromiseResolvedWithSession(PP_Instance instance,
uint32 promise_id,
PP_Var web_session_id_var) OVERRIDE;
+ virtual void PromiseResolvedWithKeyIds(PP_Instance instance,
+ uint32 promise_id,
+ PP_Var key_ids_var) OVERRIDE;
virtual void PromiseRejected(PP_Instance instance,
uint32 promise_id,
PP_CdmExceptionCode exception_code,
@@ -127,6 +130,12 @@ class PluginInstance : public ppapi::thunk::PPB_Instance_API {
PP_Var web_session_id_var,
PP_Var message_var,
PP_Var destination_url_var) OVERRIDE;
+ virtual void SessionKeysChange(PP_Instance instance,
+ PP_Var web_session_id_var,
+ PP_Bool has_additional_usable_key) OVERRIDE;
+ virtual void SessionExpirationChange(PP_Instance instance,
+ PP_Var web_session_id_var,
+ PP_Time new_expiry_time) OVERRIDE;
virtual void SessionReady(PP_Instance instance,
PP_Var web_session_id_var) OVERRIDE;
virtual void SessionClosed(PP_Instance instance,
« no previous file with comments | « media/cdm/ppapi/cdm_wrapper.h ('k') | mojo/examples/pepper_container_app/plugin_instance.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698