Index: Source/platform/drm/ContentDecryptionModuleSession.h |
diff --git a/Source/platform/drm/ContentDecryptionModuleSession.h b/Source/platform/drm/ContentDecryptionModuleSession.h |
index ef58745ab67e209642806d420102fb4eb3dd73e7..1389c28f8f4c249270ba7f612078eae0608e2cd9 100644 |
--- a/Source/platform/drm/ContentDecryptionModuleSession.h |
+++ b/Source/platform/drm/ContentDecryptionModuleSession.h |
@@ -33,6 +33,7 @@ |
#include "platform/PlatformExport.h" |
#include "public/platform/WebContentDecryptionModuleSession.h" |
+#include "wtf/Forward.h" |
#include "wtf/OwnPtr.h" |
#include "wtf/PassOwnPtr.h" |
#include "wtf/text/WTFString.h" |
@@ -41,10 +42,6 @@ namespace blink { |
class WebContentDecryptionModule; |
} |
-namespace WTF { |
-class Uint8Array; |
-} |
- |
namespace WebCore { |
class KURL; |
@@ -66,8 +63,8 @@ public: |
~ContentDecryptionModuleSession(); |
String sessionId() const; |
- void generateKeyRequest(const String& mimeType, const WTF::Uint8Array& initData); |
- void update(const WTF::Uint8Array& key); |
+ void generateKeyRequest(const String& mimeType, const Uint8Array& initData); |
+ void update(const Uint8Array& response); |
void close(); |
private: |