summaryrefslogtreecommitdiffstats
path: root/WebCore/loader/MediaDocument.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/loader/MediaDocument.h')
-rw-r--r--WebCore/loader/MediaDocument.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/loader/MediaDocument.h b/WebCore/loader/MediaDocument.h
index 98eb02f..5a8ec52 100644
--- a/WebCore/loader/MediaDocument.h
+++ b/WebCore/loader/MediaDocument.h
@@ -34,16 +34,16 @@ namespace WebCore {
class MediaDocument : public HTMLDocument {
public:
- static PassRefPtr<MediaDocument> create(Frame* frame)
+ static PassRefPtr<MediaDocument> create(Frame* frame, const KURL& url)
{
- return adoptRef(new MediaDocument(frame));
+ return adoptRef(new MediaDocument(frame, url));
}
virtual ~MediaDocument();
void mediaElementSawUnsupportedTracks();
private:
- MediaDocument(Frame*);
+ MediaDocument(Frame*, const KURL&);
virtual bool isMediaDocument() const { return true; }
virtual DocumentParser* createParser();