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

Unified Diff: media/cdm/ppapi/ppapi_cdm_adapter.h

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: media/cdm/ppapi/ppapi_cdm_adapter.h
diff --git a/media/cdm/ppapi/ppapi_cdm_adapter.h b/media/cdm/ppapi/ppapi_cdm_adapter.h
index efa6ce75bc2957480adfd1e8a5be821683effbce..506dff7b74e2d2fe08daf1da580397691709451b 100644
--- a/media/cdm/ppapi/ppapi_cdm_adapter.h
+++ b/media/cdm/ppapi/ppapi_cdm_adapter.h
@@ -158,12 +158,10 @@ class PpapiCdmAdapter : public pp::Instance,
SessionMessage(const std::string& session_id,
cdm::MessageType message_type,
const char* message,
- uint32_t message_size,
- const std::string& legacy_destination_url);
+ uint32_t message_size);
std::string session_id;
cdm::MessageType message_type;
std::vector<uint8_t> message;
- std::string legacy_destination_url;
};
// Create an instance of the |key_system| CDM. Caller owns the returned
@@ -184,9 +182,6 @@ class PpapiCdmAdapter : public pp::Instance,
void SendSessionMessageInternal(int32_t result,
const SessionMessage& message);
void SendSessionClosedInternal(int32_t result, const std::string& session_id);
- void SendSessionErrorInternal(int32_t result,
- const std::string& session_id,
- const SessionError& error);
void SendSessionKeysChangeInternal(
int32_t result,
const std::string& session_id,

Powered by Google App Engine
This is Rietveld 408576698