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

Unified Diff: Source/core/html/parser/HTMLParserThread.h

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: Leak fix Created 6 years, 9 months 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/html/parser/HTMLParserThread.h
diff --git a/Source/core/html/parser/HTMLParserThread.h b/Source/core/html/parser/HTMLParserThread.h
index a350c80e1459b28c224b6f6f0620b50d0b18ea10..1feb999166443ea7d96874bbd24895acc56a7c6b 100644
--- a/Source/core/html/parser/HTMLParserThread.h
+++ b/Source/core/html/parser/HTMLParserThread.h
@@ -46,13 +46,12 @@ public:
static HTMLParserThread* shared();
void postTask(const Closure&);
+ blink::WebThread& platformThread();
private:
HTMLParserThread();
~HTMLParserThread();
- blink::WebThread& ensureThread();
-
OwnPtr<blink::WebThread> m_thread;
};

Powered by Google App Engine
This is Rietveld 408576698