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

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

Issue 811923002: Changes to support CDM_7 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CrOS compile error Created 5 years, 11 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 d07bc230c61d407ed8690df1f79d89786472f3c4..e02928c95da8d17f28f796667fe1ee3f89e458ab 100644
--- a/content/renderer/pepper/pepper_plugin_instance_impl.h
+++ b/content/renderer/pepper/pepper_plugin_instance_impl.h
@@ -471,9 +471,6 @@ class CONTENT_EXPORT PepperPluginInstanceImpl
void PromiseResolvedWithSession(PP_Instance instance,
uint32 promise_id,
PP_Var web_session_id_var) override;
- void PromiseResolvedWithKeyIds(PP_Instance instance,
- uint32 promise_id,
- PP_Var key_ids_var) override;
void PromiseRejected(PP_Instance instance,
uint32 promise_id,
PP_CdmExceptionCode exception_code,
@@ -481,15 +478,17 @@ class CONTENT_EXPORT PepperPluginInstanceImpl
PP_Var error_description_var) override;
void SessionMessage(PP_Instance instance,
PP_Var web_session_id_var,
- PP_Var message_var,
- PP_Var destination_url_var) override;
- void SessionKeysChange(PP_Instance instance,
- PP_Var web_session_id_var,
- PP_Bool has_additional_usable_key) override;
+ PP_CdmMessageType message_type,
+ PP_Var message_var) override;
+ void SessionKeysChange(
+ PP_Instance instance,
+ PP_Var web_session_id_var,
+ PP_Bool has_additional_usable_key,
+ uint32_t key_count,
+ const struct PP_KeyInformation key_information[]) override;
void SessionExpirationChange(PP_Instance instance,
PP_Var web_session_id_var,
PP_Time new_expiry_time) override;
- void SessionReady(PP_Instance instance, PP_Var web_session_id_var) override;
void SessionClosed(PP_Instance instance, PP_Var web_session_id_var) override;
void SessionError(PP_Instance instance,
PP_Var web_session_id_var,
« no previous file with comments | « content/renderer/pepper/content_decryptor_delegate.cc ('k') | content/renderer/pepper/pepper_plugin_instance_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698