| Index: sky/engine/core/html/parser/HTMLTreeBuilder.h
|
| diff --git a/sky/engine/core/html/parser/HTMLTreeBuilder.h b/sky/engine/core/html/parser/HTMLTreeBuilder.h
|
| index 82fa0931558c0ebbfb4545f953c7500a009e91fa..c0d3c1707fdd2e2241c775590b62530bfa0ef8c0 100644
|
| --- a/sky/engine/core/html/parser/HTMLTreeBuilder.h
|
| +++ b/sky/engine/core/html/parser/HTMLTreeBuilder.h
|
| @@ -54,13 +54,13 @@ class HTMLDocumentParser;
|
| class HTMLTreeBuilder FINAL : public NoBaseWillBeGarbageCollectedFinalized<HTMLTreeBuilder> {
|
| WTF_MAKE_NONCOPYABLE(HTMLTreeBuilder); WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
|
| public:
|
| - static PassOwnPtrWillBeRawPtr<HTMLTreeBuilder> create(HTMLDocumentParser* parser, HTMLDocument* document, ParserContentPolicy parserContentPolicy, bool reportErrors, const HTMLParserOptions& options)
|
| + static PassOwnPtrWillBeRawPtr<HTMLTreeBuilder> create(HTMLDocumentParser* parser, HTMLDocument* document, bool reportErrors, const HTMLParserOptions& options)
|
| {
|
| - return adoptPtrWillBeNoop(new HTMLTreeBuilder(parser, document, parserContentPolicy, reportErrors, options));
|
| + return adoptPtrWillBeNoop(new HTMLTreeBuilder(parser, document, reportErrors, options));
|
| }
|
| - static PassOwnPtrWillBeRawPtr<HTMLTreeBuilder> create(HTMLDocumentParser* parser, DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy, const HTMLParserOptions& options)
|
| + static PassOwnPtrWillBeRawPtr<HTMLTreeBuilder> create(HTMLDocumentParser* parser, DocumentFragment* fragment, Element* contextElement, const HTMLParserOptions& options)
|
| {
|
| - return adoptPtrWillBeNoop(new HTMLTreeBuilder(parser, fragment, contextElement, parserContentPolicy, options));
|
| + return adoptPtrWillBeNoop(new HTMLTreeBuilder(parser, fragment, contextElement, options));
|
| }
|
| ~HTMLTreeBuilder();
|
| void trace(Visitor*);
|
| @@ -92,8 +92,8 @@ private:
|
| TextMode,
|
| };
|
|
|
| - HTMLTreeBuilder(HTMLDocumentParser*, HTMLDocument*, ParserContentPolicy, bool reportErrors, const HTMLParserOptions&);
|
| - HTMLTreeBuilder(HTMLDocumentParser*, DocumentFragment*, Element* contextElement, ParserContentPolicy, const HTMLParserOptions&);
|
| + HTMLTreeBuilder(HTMLDocumentParser*, HTMLDocument*, bool reportErrors, const HTMLParserOptions&);
|
| + HTMLTreeBuilder(HTMLDocumentParser*, DocumentFragment*, Element* contextElement, const HTMLParserOptions&);
|
|
|
| void processStartTag(AtomicHTMLToken*);
|
| void processEndTag(AtomicHTMLToken*);
|
|
|