| Index: third_party/WebKit/Source/core/editing/VisibleSelection.cpp
 | 
| diff --git a/third_party/WebKit/Source/core/editing/VisibleSelection.cpp b/third_party/WebKit/Source/core/editing/VisibleSelection.cpp
 | 
| index c7aadb753210287c7844257a01a911b3a62aaa26..abfaeda96f861d85892fc11b1bf5c63034a33fb4 100644
 | 
| --- a/third_party/WebKit/Source/core/editing/VisibleSelection.cpp
 | 
| +++ b/third_party/WebKit/Source/core/editing/VisibleSelection.cpp
 | 
| @@ -917,14 +917,14 @@
 | 
|      String s;
 | 
|  
 | 
|      if (isNone()) {
 | 
| -        result.append("<none>");
 | 
| +        result.appendLiteral("<none>");
 | 
|      } else {
 | 
|          const int FormatBufferSize = 1024;
 | 
|          char s[FormatBufferSize];
 | 
| -        result.append("from ");
 | 
| +        result.appendLiteral("from ");
 | 
|          start().formatForDebugger(s, FormatBufferSize);
 | 
|          result.append(s);
 | 
| -        result.append(" to ");
 | 
| +        result.appendLiteral(" to ");
 | 
|          end().formatForDebugger(s, FormatBufferSize);
 | 
|          result.append(s);
 | 
|      }
 | 
| 
 |