Index: third_party/WebKit/Source/core/dom/Range.cpp |
diff --git a/third_party/WebKit/Source/core/dom/Range.cpp b/third_party/WebKit/Source/core/dom/Range.cpp |
index 110cb2d8d80e15c59617dbf1e5c0453eea00b26f..7c47b01fa57265ec35fd980076810dac13dbd223 100644 |
--- a/third_party/WebKit/Source/core/dom/Range.cpp |
+++ b/third_party/WebKit/Source/core/dom/Range.cpp |
@@ -1313,14 +1313,14 @@ void Range::formatForDebugger(char* buffer, unsigned length) const |
const int FormatBufferSize = 1024; |
char s[FormatBufferSize]; |
- result.appendLiteral("from offset "); |
+ result.append("from offset "); |
result.appendNumber(m_start.offset()); |
- result.appendLiteral(" of "); |
+ result.append(" of "); |
m_start.container()->formatForDebugger(s, FormatBufferSize); |
result.append(s); |
- result.appendLiteral(" to offset "); |
+ result.append(" to offset "); |
result.appendNumber(m_end.offset()); |
- result.appendLiteral(" of "); |
+ result.append(" of "); |
m_end.container()->formatForDebugger(s, FormatBufferSize); |
result.append(s); |