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

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

Issue 2255943002: EME: Remove obsolete legacy APIs related to versions of prefixed EME (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build and add bug reference for obsoletes Created 4 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.cc
diff --git a/content/renderer/pepper/pepper_plugin_instance_impl.cc b/content/renderer/pepper/pepper_plugin_instance_impl.cc
index 5607f6cc418db84c4705234bfe0c6f47c17f7dbf..3c663d519c7c8a9ff7d029f7dab57829491e6d56 100644
--- a/content/renderer/pepper/pepper_plugin_instance_impl.cc
+++ b/content/renderer/pepper/pepper_plugin_instance_impl.cc
@@ -2527,8 +2527,9 @@ void PepperPluginInstanceImpl::SessionMessage(PP_Instance instance,
PP_CdmMessageType message_type,
PP_Var message_var,
PP_Var legacy_destination_url) {
- content_decryptor_delegate_->OnSessionMessage(
- session_id_var, message_type, message_var, legacy_destination_url);
+ // |legacy_destination_url| is obsolete.
+ content_decryptor_delegate_->OnSessionMessage(session_id_var, message_type,
+ message_var);
}
void PepperPluginInstanceImpl::SessionKeysChange(
@@ -2560,8 +2561,7 @@ void PepperPluginInstanceImpl::LegacySessionError(
PP_CdmExceptionCode exception_code,
uint32_t system_code,
PP_Var error_description_var) {
- content_decryptor_delegate_->OnLegacySessionError(
- session_id_var, exception_code, system_code, error_description_var);
+ // Obsolete.
}
void PepperPluginInstanceImpl::DeliverBlock(

Powered by Google App Engine
This is Rietveld 408576698