Index: Source/core/html/HTMLMediaSource.h |
diff --git a/Source/core/html/HTMLMediaSource.h b/Source/core/html/HTMLMediaSource.h |
index ddf0aefb81ba9a93816d15039e5e98f2be98c95d..f40206ce094b72003d5a5713bef0091741aa1785 100644 |
--- a/Source/core/html/HTMLMediaSource.h |
+++ b/Source/core/html/HTMLMediaSource.h |
@@ -35,9 +35,12 @@ |
#include "core/html/URLRegistry.h" |
#include "wtf/Forward.h" |
+namespace blink { |
+class WebMediaSource; |
+} |
+ |
namespace WebCore { |
-class MediaSourcePrivate; |
class TimeRanges; |
class HTMLMediaSource : public URLRegistrable { |
@@ -56,7 +59,7 @@ public: |
// Once attached, the source uses the element to synchronously service some |
// API operations like duration change that may need to initiate seek. |
virtual bool attachToElement(HTMLMediaElement*) = 0; |
- virtual void setPrivateAndOpen(PassOwnPtr<MediaSourcePrivate>) = 0; |
+ virtual void setWebMediaSourceAndOpen(PassOwnPtr<blink::WebMediaSource>) = 0; |
virtual void close() = 0; |
virtual bool isClosed() const = 0; |
virtual double duration() const = 0; |