Index: Source/core/html/parser/HTMLViewSourceParser.cpp |
diff --git a/Source/core/html/parser/HTMLViewSourceParser.cpp b/Source/core/html/parser/HTMLViewSourceParser.cpp |
index 4df8f8b273a25668755d02d877e6f44638f97f15..ed0b8a8ae919c21c876cb909b7906515224d0c40 100644 |
--- a/Source/core/html/parser/HTMLViewSourceParser.cpp |
+++ b/Source/core/html/parser/HTMLViewSourceParser.cpp |
@@ -63,9 +63,9 @@ void HTMLViewSourceParser::pumpTokenizer() |
} |
} |
-void HTMLViewSourceParser::append(PassRefPtr<StringImpl> input) |
+void HTMLViewSourceParser::append(const String& input) |
{ |
- m_input.appendToEnd(String(input)); |
+ m_input.appendToEnd(input); |
pumpTokenizer(); |
} |