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

Unified Diff: content/renderer/pepper/pepper_plugin_instance_impl.h

Issue 496143002: Update Pepper interface for EME (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: GetResolveParameterType Created 6 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: content/renderer/pepper/pepper_plugin_instance_impl.h
diff --git a/content/renderer/pepper/pepper_plugin_instance_impl.h b/content/renderer/pepper/pepper_plugin_instance_impl.h
index 4b86e6e67c2eb6af8a76fbc077e6ba8be9674188..cb145e0fefa9806232d8a7b748e2551a85164d3c 100644
--- a/content/renderer/pepper/pepper_plugin_instance_impl.h
+++ b/content/renderer/pepper/pepper_plugin_instance_impl.h
@@ -465,6 +465,9 @@ class CONTENT_EXPORT PepperPluginInstanceImpl
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,
@@ -474,6 +477,12 @@ class CONTENT_EXPORT PepperPluginInstanceImpl
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,

Powered by Google App Engine
This is Rietveld 408576698