| Index: Source/core/html/parser/HTMLTreeBuilder.h
|
| diff --git a/Source/core/html/parser/HTMLTreeBuilder.h b/Source/core/html/parser/HTMLTreeBuilder.h
|
| index 9099608abddf6f76537188242d3d4c97403bd621..d5fdd86bc39b34b53d535425a32888afbc874bb7 100644
|
| --- a/Source/core/html/parser/HTMLTreeBuilder.h
|
| +++ b/Source/core/html/parser/HTMLTreeBuilder.h
|
| @@ -54,7 +54,7 @@ class HTMLDocumentParser;
|
| class HTMLTreeBuilder {
|
| WTF_MAKE_NONCOPYABLE(HTMLTreeBuilder); WTF_MAKE_FAST_ALLOCATED;
|
| public:
|
| - static PassOwnPtr<HTMLTreeBuilder> create(HTMLDocumentParser* parser, HTMLDocument* document, ParserContentPolicy parserContentPolicy, bool reportErrors, const HTMLParserOptions& options)
|
| + static PassOwnPtr<HTMLTreeBuilder> create(HTMLDocumentParser* parser, Document* document, ParserContentPolicy parserContentPolicy, bool reportErrors, const HTMLParserOptions& options)
|
| {
|
| return adoptPtr(new HTMLTreeBuilder(parser, document, parserContentPolicy, reportErrors, options));
|
| }
|
| @@ -113,7 +113,7 @@ private:
|
| AfterAfterFramesetMode,
|
| };
|
|
|
| - HTMLTreeBuilder(HTMLDocumentParser*, HTMLDocument*, ParserContentPolicy, bool reportErrors, const HTMLParserOptions&);
|
| + HTMLTreeBuilder(HTMLDocumentParser*, Document*, ParserContentPolicy, bool reportErrors, const HTMLParserOptions&);
|
| HTMLTreeBuilder(HTMLDocumentParser*, DocumentFragment*, Element* contextElement, ParserContentPolicy, const HTMLParserOptions&);
|
|
|
| void processToken(AtomicHTMLToken*);
|
|
|