| Index: third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.h
|
| diff --git a/third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.h b/third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.h
|
| index 7e46c90652677155507d49c9a5d578ed628457cf..f41d9b030ae6df4aa453c51e3f5c958b9e260e48 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.h
|
| +++ b/third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.h
|
| @@ -60,10 +60,10 @@
|
| class Element;
|
| class HTMLDocument;
|
| class HTMLParserScheduler;
|
| -class HTMLResourcePreloader;
|
| class HTMLScriptRunner;
|
| class HTMLTreeBuilder;
|
| -class ParsedChunkQueue;
|
| +class HTMLResourcePreloader;
|
| +
|
| class PumpSession;
|
|
|
| class HTMLDocumentParser : public ScriptableDocumentParser, private HTMLScriptRunnerHost {
|
| @@ -103,7 +103,7 @@
|
| TokenPreloadScannerCheckpoint preloadScannerCheckpoint;
|
| bool startingScript;
|
| };
|
| - void notifyPendingParsedChunks();
|
| + void didReceiveParsedChunkFromBackgroundParser(PassOwnPtr<ParsedChunk>);
|
| void didReceiveEncodingDataFromBackgroundParser(const DocumentEncodingData&);
|
|
|
| void appendBytes(const char* bytes, size_t length) override;
|
| @@ -202,7 +202,6 @@
|
| WeakPtr<BackgroundHTMLParser> m_backgroundParser;
|
| OwnPtrWillBeMember<HTMLResourcePreloader> m_preloader;
|
| PreloadRequestStream m_queuedPreloads;
|
| - OwnPtr<ParsedChunkQueue> m_parsedChunkQueue;
|
|
|
| bool m_shouldUseThreading;
|
| bool m_endWasDelayed;
|
|
|