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

Unified Diff: Source/core/loader/DocumentWriter.cpp

Issue 100563004: Redirect HTML resource bytes directly to parser thread (Blink side CL) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@parserthread_decodermove
Patch Set: Missing include Created 7 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
Index: Source/core/loader/DocumentWriter.cpp
diff --git a/Source/core/loader/DocumentWriter.cpp b/Source/core/loader/DocumentWriter.cpp
index 8294fbd0627fe9e4c5f77f4da7196909754f66d4..cb9fb690139f709d3ad7aeeacebbc1915fe549d7 100644
--- a/Source/core/loader/DocumentWriter.cpp
+++ b/Source/core/loader/DocumentWriter.cpp
@@ -93,6 +93,11 @@ void DocumentWriter::addData(const char* bytes, size_t length)
m_parser->appendBytes(bytes, length);
}
+void DocumentWriter::parserResourceMessageFilterAdded()
+{
+ m_parser->parserResourceMessageFilterAdded();
+}
+
void DocumentWriter::end()
{
ASSERT(m_document);

Powered by Google App Engine
This is Rietveld 408576698