| Index: Source/core/html/HTMLViewSourceDocument.h
|
| diff --git a/Source/core/html/HTMLViewSourceDocument.h b/Source/core/html/HTMLViewSourceDocument.h
|
| index 9e196c8f1b7d45f9d9361ba658b88373ddcf925d..81d33db83406cdb6fe05aee7ab511d4e46568045 100644
|
| --- a/Source/core/html/HTMLViewSourceDocument.h
|
| +++ b/Source/core/html/HTMLViewSourceDocument.h
|
| @@ -35,15 +35,15 @@ class HTMLToken;
|
|
|
| class HTMLViewSourceDocument FINAL : public HTMLDocument {
|
| public:
|
| - static PassRefPtr<HTMLViewSourceDocument> create(Frame* frame, const KURL& url, const String& mimeType)
|
| + static PassRefPtr<HTMLViewSourceDocument> create(const DocumentInitializer& initializer, const String& mimeType)
|
| {
|
| - return adoptRef(new HTMLViewSourceDocument(frame, url, mimeType));
|
| + return adoptRef(new HTMLViewSourceDocument(initializer, mimeType));
|
| }
|
|
|
| void addSource(const String&, HTMLToken&);
|
|
|
| private:
|
| - HTMLViewSourceDocument(Frame*, const KURL&, const String& mimeType);
|
| + HTMLViewSourceDocument(const DocumentInitializer&, const String& mimeType);
|
|
|
| virtual PassRefPtr<DocumentParser> createParser() OVERRIDE;
|
|
|
|
|