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

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

Issue 131653003: Support LoadSession() in MediaKeys and PPP_ContentDecryptor_Private interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments addressed Created 6 years, 10 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/cdm_adapter.h
diff --git a/media/cdm/ppapi/cdm_adapter.h b/media/cdm/ppapi/cdm_adapter.h
index 98f6ed3819a7d01ebe3475519bd54bc4b1cf2af0..56bee27315a225905ba0ddaa0645ce3f3cc6b2c8 100644
--- a/media/cdm/ppapi/cdm_adapter.h
+++ b/media/cdm/ppapi/cdm_adapter.h
@@ -54,8 +54,10 @@ class CdmAdapter : public pp::Instance,
// PPB_ContentDecryptor_Private interface.
virtual void Initialize(const std::string& key_system) OVERRIDE;
virtual void CreateSession(uint32_t session_id,
- const std::string& type,
+ const std::string& content_type,
pp::VarArrayBuffer init_data) OVERRIDE;
+ virtual void LoadSession(uint32_t session_id,
+ const std::string& web_session_id) OVERRIDE;
virtual void UpdateSession(uint32_t session_id,
pp::VarArrayBuffer response) OVERRIDE;
virtual void ReleaseSession(uint32_t session_id) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698