| Index: third_party/WebKit/Source/modules/websockets/DOMWebSocket.cpp
|
| diff --git a/third_party/WebKit/Source/modules/websockets/DOMWebSocket.cpp b/third_party/WebKit/Source/modules/websockets/DOMWebSocket.cpp
|
| index ec2f64b16ea8b664c33264b69fcebe1cb1cfaf41..48a9ab453c2273411da6ae9fd7cc31667c208b8e 100644
|
| --- a/third_party/WebKit/Source/modules/websockets/DOMWebSocket.cpp
|
| +++ b/third_party/WebKit/Source/modules/websockets/DOMWebSocket.cpp
|
| @@ -189,7 +189,7 @@
|
| if (protocol[i] < 0x20 || protocol[i] > 0x7E)
|
| builder.append(String::format("\\u%04X", protocol[i]));
|
| else if (protocol[i] == 0x5c)
|
| - builder.append("\\\\");
|
| + builder.appendLiteral("\\\\");
|
| else
|
| builder.append(protocol[i]);
|
| }
|
|
|