| Index: third_party/WebKit/Source/wtf/text/TextCodecUserDefined.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/text/TextCodecUserDefined.cpp b/third_party/WebKit/Source/wtf/text/TextCodecUserDefined.cpp
|
| index 956e855294bfbe81c898da6bb5f4ce63d6f80d48..313ee64680bc4d882bb8026fbc0830d7bee11456 100644
|
| --- a/third_party/WebKit/Source/wtf/text/TextCodecUserDefined.cpp
|
| +++ b/third_party/WebKit/Source/wtf/text/TextCodecUserDefined.cpp
|
| @@ -101,7 +101,8 @@ CString TextCodecUserDefined::encodeCommon(const CharType* characters,
|
| char* bytes;
|
| CString result = CString::newUninitialized(length, bytes);
|
|
|
| - // Convert the string a fast way and simultaneously do an efficient check to see if it's all ASCII.
|
| + // Convert the string a fast way and simultaneously do an efficient check to
|
| + // see if it's all ASCII.
|
| UChar ored = 0;
|
| for (size_t i = 0; i < length; ++i) {
|
| UChar c = characters[i];
|
|
|