Index: Source/core/html/parser/TextDocumentParser.cpp |
diff --git a/Source/core/html/parser/TextDocumentParser.cpp b/Source/core/html/parser/TextDocumentParser.cpp |
index bc7c5b063bfbe2039210449eaa24f1fbad8ac743..2737f5a86b4811b84f5ebd1c18437294d3df418f 100644 |
--- a/Source/core/html/parser/TextDocumentParser.cpp |
+++ b/Source/core/html/parser/TextDocumentParser.cpp |
@@ -27,13 +27,14 @@ |
#include "core/HTMLNames.h" |
#include "core/html/parser/HTMLTreeBuilder.h" |
+#include "core/html/parser/ParserSynchronizationPolicy.h" |
namespace blink { |
using namespace HTMLNames; |
-TextDocumentParser::TextDocumentParser(HTMLDocument& document) |
- : HTMLDocumentParser(document, false) |
+TextDocumentParser::TextDocumentParser(HTMLDocument& document, ParserSynchronizationPolicy syncPolicy) |
+ : HTMLDocumentParser(document, false, syncPolicy) |
, m_haveInsertedFakePreElement(false) |
{ |
} |