Index: Source/core/html/parser/BackgroundHTMLParser.h |
diff --git a/Source/core/html/parser/BackgroundHTMLParser.h b/Source/core/html/parser/BackgroundHTMLParser.h |
index f1a76fd000577676c9ef0ea5b580076ebfeb221d..d6223c0c0d6ef07ac5ccf584d14af9dfc5275b65 100644 |
--- a/Source/core/html/parser/BackgroundHTMLParser.h |
+++ b/Source/core/html/parser/BackgroundHTMLParser.h |
@@ -65,7 +65,9 @@ public: |
String unparsedInput; |
}; |
- void appendBytes(PassOwnPtr<Vector<char> >); |
+ void appendRawBytesFromParserThread(const char* data, int dataLength); |
+ |
+ void appendRawBytesFromMainThread(PassOwnPtr<Vector<char> >); |
void setDecoder(PassOwnPtr<TextResourceDecoder>); |
void flush(); |
void resumeFrom(PassOwnPtr<Checkpoint>); |
@@ -79,7 +81,7 @@ private: |
BackgroundHTMLParser(PassRefPtr<WeakReference<BackgroundHTMLParser> >, PassOwnPtr<Configuration>); |
~BackgroundHTMLParser(); |
- void append(const String&); |
+ void appendDecodedBytes(const String&); |
void markEndOfFile(); |
void pumpTokenizer(); |
void sendTokensToMainThread(); |