| Index: third_party/WebKit/Source/core/frame/FrameConsole.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameConsole.cpp b/third_party/WebKit/Source/core/frame/FrameConsole.cpp
|
| index 625a0cc969ffc0bd26435e0698dca0b3888a6f44..f749a28722e1f611cc1b618d63db917adba4c6df 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameConsole.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/FrameConsole.cpp
|
| @@ -165,9 +165,9 @@
|
| if (!storage)
|
| return;
|
| StringBuilder message;
|
| - message.append("Failed to load resource");
|
| + message.appendLiteral("Failed to load resource");
|
| if (!error.localizedDescription().isEmpty()) {
|
| - message.append(": ");
|
| + message.appendLiteral(": ");
|
| message.append(error.localizedDescription());
|
| }
|
| ConsoleMessage* consoleMessage = ConsoleMessage::createForRequest(NetworkMessageSource, ErrorMessageLevel, message.toString(), error.failingURL(), requestIdentifier);
|
|
|