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; |