| 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 f749a28722e1f611cc1b618d63db917adba4c6df..625a0cc969ffc0bd26435e0698dca0b3888a6f44 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameConsole.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/FrameConsole.cpp
|
| @@ -165,9 +165,9 @@ void FrameConsole::didFailLoading(unsigned long requestIdentifier, const Resourc
|
| if (!storage)
|
| return;
|
| StringBuilder message;
|
| - message.appendLiteral("Failed to load resource");
|
| + message.append("Failed to load resource");
|
| if (!error.localizedDescription().isEmpty()) {
|
| - message.appendLiteral(": ");
|
| + message.append(": ");
|
| message.append(error.localizedDescription());
|
| }
|
| ConsoleMessage* consoleMessage = ConsoleMessage::createForRequest(NetworkMessageSource, ErrorMessageLevel, message.toString(), error.failingURL(), requestIdentifier);
|
|
|