Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1114)

Unified Diff: Source/core/html/parser/TextDocumentParser.cpp

Issue 779393002: Turn DocumentParser::pinToMainThread into a cleaner api (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/parser/TextDocumentParser.h ('k') | Source/core/inspector/DOMPatchSupport.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
{
}
« no previous file with comments | « Source/core/html/parser/TextDocumentParser.h ('k') | Source/core/inspector/DOMPatchSupport.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698