Index: Source/core/html/parser/TextDocumentParser.cpp |
diff --git a/Source/core/html/parser/TextDocumentParser.cpp b/Source/core/html/parser/TextDocumentParser.cpp |
index d29935a77c95559a13dbde1c3f6f887caa709d43..38175a0f6bfea99a4338b6a7d7afcd1f8b2bd707 100644 |
--- a/Source/core/html/parser/TextDocumentParser.cpp |
+++ b/Source/core/html/parser/TextDocumentParser.cpp |
@@ -42,11 +42,11 @@ TextDocumentParser::~TextDocumentParser() |
{ |
} |
-void TextDocumentParser::appendBytes(const char* data, size_t length) |
+void TextDocumentParser::append(PassRefPtr<StringImpl> text) |
{ |
if (!m_haveInsertedFakePreElement) |
insertFakePreElement(); |
- HTMLDocumentParser::appendBytes(data, length); |
+ HTMLDocumentParser::append(text); |
} |
void TextDocumentParser::insertFakePreElement() |