| Index: Source/core/html/parser/HTMLDocumentParser.h
|
| diff --git a/Source/core/html/parser/HTMLDocumentParser.h b/Source/core/html/parser/HTMLDocumentParser.h
|
| index b41beae929c1c532d848ad2f2096f35b4cfab52a..c15bb47bc5acd98834cc56d4f2f215bd497aa086 100644
|
| --- a/Source/core/html/parser/HTMLDocumentParser.h
|
| +++ b/Source/core/html/parser/HTMLDocumentParser.h
|
| @@ -29,6 +29,7 @@
|
| #include "core/dom/ParserContentPolicy.h"
|
| #include "core/dom/ScriptableDocumentParser.h"
|
| #include "core/fetch/ResourceClient.h"
|
| +#include "core/fetch/TextResourceDecoder.h"
|
| #include "core/html/parser/BackgroundHTMLInputStream.h"
|
| #include "core/html/parser/CompactHTMLToken.h"
|
| #include "core/html/parser/HTMLInputStream.h"
|
| @@ -95,6 +96,11 @@ public:
|
| TokenPreloadScannerCheckpoint preloadScannerCheckpoint;
|
| };
|
| void didReceiveParsedChunkFromBackgroundParser(PassOwnPtr<ParsedChunk>);
|
| + void didReceiveEncodingDataFromBackgroundParser(const DocumentEncodingData&);
|
| +
|
| + virtual void appendBytes(const char* bytes, size_t length) OVERRIDE;
|
| + virtual void flush() OVERRIDE;
|
| + virtual void setDecoder(PassOwnPtr<TextResourceDecoder>) OVERRIDE;
|
|
|
| protected:
|
| virtual void insert(const SegmentedString&) OVERRIDE;
|
|
|