Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1092)

Unified Diff: third_party/WebKit/Source/wtf/text/TextCodecUserDefined.cpp

Issue 2373983006: reflow comments in wtf/text (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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];

Powered by Google App Engine
This is Rietveld 408576698