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

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

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
Index: mojo/examples/pepper_container_app/plugin_instance.cc
diff --git a/mojo/examples/pepper_container_app/plugin_instance.cc b/mojo/examples/pepper_container_app/plugin_instance.cc
index c0d2e312d649663afd1de7039eeaffd46d3b93d9..8817528ef79d28fe6243d76863de532f5760d913 100644
--- a/mojo/examples/pepper_container_app/plugin_instance.cc
+++ b/mojo/examples/pepper_container_app/plugin_instance.cc
@@ -310,6 +310,12 @@ void PluginInstance::PromiseResolvedWithSession(PP_Instance instance,
NOTIMPLEMENTED();
}
+void PluginInstance::PromiseResolvedWithKeyIds(PP_Instance instance,
+ uint32 promise_id,
+ PP_Var key_ids_var) {
+ NOTIMPLEMENTED();
+}
+
void PluginInstance::PromiseRejected(PP_Instance instance,
uint32 promise_id,
PP_CdmExceptionCode exception_code,
@@ -325,6 +331,18 @@ void PluginInstance::SessionMessage(PP_Instance instance,
NOTIMPLEMENTED();
}
+void PluginInstance::SessionKeysChange(PP_Instance instance,
+ PP_Var web_session_id_var,
+ PP_Bool has_additional_usable_key) {
+ NOTIMPLEMENTED();
+}
+
+void PluginInstance::SessionExpirationChange(PP_Instance instance,
+ PP_Var web_session_id_var,
+ PP_Time new_expiry_time) {
+ NOTIMPLEMENTED();
+}
+
void PluginInstance::SessionReady(PP_Instance instance,
PP_Var web_session_id_var) {
NOTIMPLEMENTED();
« no previous file with comments | « mojo/examples/pepper_container_app/plugin_instance.h ('k') | ppapi/api/private/ppb_content_decryptor_private.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698