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

Unified Diff: ppapi/cpp/private/content_decryptor_private.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: ppapi/cpp/private/content_decryptor_private.h
diff --git a/ppapi/cpp/private/content_decryptor_private.h b/ppapi/cpp/private/content_decryptor_private.h
index d2c17c1869ab3b5df310e45a108286e16817563d..4ac9f7907ea4a9fe6b9278754d6b970890b58396 100644
--- a/ppapi/cpp/private/content_decryptor_private.h
+++ b/ppapi/cpp/private/content_decryptor_private.h
@@ -33,8 +33,10 @@ class ContentDecryptor_Private {
// replying to the browser.
virtual void Initialize(const std::string& key_system) = 0;
virtual void CreateSession(uint32_t session_id,
- const std::string& type,
+ const std::string& content_type,
pp::VarArrayBuffer init_data) = 0;
+ virtual void LoadSession(uint32_t session_id,
+ const std::string& web_session_id) = 0;
dmichael (off chromium) 2014/02/10 23:56:50 Don't you need a corresponding change to the body?
xhwang 2014/02/11 00:09:55 Done. I accidentally reverted the change in the im
virtual void UpdateSession(uint32_t session_id,
pp::VarArrayBuffer response) = 0;
virtual void ReleaseSession(uint32_t session_id) = 0;
« no previous file with comments | « ppapi/c/private/ppp_content_decryptor_private.h ('k') | ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698