Index: public/platform/WebMediaPlayer.h |
diff --git a/public/platform/WebMediaPlayer.h b/public/platform/WebMediaPlayer.h |
index 497bac55359bd476ca495bb9ae6a02877d729a8e..40592d5b9a9c6992ce078dc9f1aef7b4f060a58f 100644 |
--- a/public/platform/WebMediaPlayer.h |
+++ b/public/platform/WebMediaPlayer.h |
@@ -32,6 +32,7 @@ |
#define WebMediaPlayer_h |
#include "WebCanvas.h" |
+#include "WebContentDecryptionModule.h" |
#include "WebMediaSource.h" |
#include "WebString.h" |
#include "WebTimeRange.h" |
@@ -155,6 +156,7 @@ public: |
virtual MediaKeyException addKey(const WebString& keySystem, const unsigned char* key, unsigned keyLength, const unsigned char* initData, unsigned initDataLength, const WebString& sessionId) { return MediaKeyExceptionKeySystemNotSupported; } |
virtual MediaKeyException cancelKeyRequest(const WebString& keySystem, const WebString& sessionId) { return MediaKeyExceptionKeySystemNotSupported; } |
virtual void setContentDecryptionModule(WebContentDecryptionModule* cdm) { } |
ddorwin
2014/07/31 00:56:36
FIXME: Remove.
jrummell
2014/08/07 01:43:02
Renaming, which will work as long a Chromium chang
|
+ virtual void setContentDecryptionModule(WebContentDecryptionModule* cdm, WebContentDecryptionModuleResult result) { result.completeWithError(WebContentDecryptionModuleExceptionNotSupportedError, 0, "ERROR"); } |
// Sets the poster image URL. |
virtual void setPoster(const WebURL& poster) { } |