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

Unified Diff: webkit/media/crypto/ppapi/clear_key_cdm.h

Issue 11270057: Add type argument to pepper content decryptor method GenerateKeyRequest(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased on 11274065, and addressed comments. Created 8 years, 2 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: webkit/media/crypto/ppapi/clear_key_cdm.h
diff --git a/webkit/media/crypto/ppapi/clear_key_cdm.h b/webkit/media/crypto/ppapi/clear_key_cdm.h
index 95c188fe051677bcf2f4aed7ae54b8f6bcd8bfa6..429de3996dd3437bab4d9199123fe621387104ca 100644
--- a/webkit/media/crypto/ppapi/clear_key_cdm.h
+++ b/webkit/media/crypto/ppapi/clear_key_cdm.h
@@ -46,6 +46,10 @@ class ClearKeyCdm : public cdm::ContentDecryptionModule {
// ContentDecryptionModule implementation.
virtual cdm::Status GenerateKeyRequest(
+ const char* key_system,
+ int key_system_size,
+ const char* type,
+ int type_size,
const uint8_t* init_data,
int init_data_size,
cdm::KeyMessage* key_request) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698