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

Unified Diff: third_party/WebKit/Source/wtf/text/TextEncodingRegistry.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/TextEncodingRegistry.cpp
diff --git a/third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp b/third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp
index 7cdcb979c0814a265bc75ddcacb48a1b9ee7e44a..4eaa26a6d939427fc660bd76b887ce95d9735deb 100644
--- a/third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp
+++ b/third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp
@@ -145,12 +145,14 @@ static void checkExistingName(const char* alias, const char* atomicName) {
#endif
static bool isUndesiredAlias(const char* alias) {
- // Reject aliases with version numbers that are supported by some back-ends (such as "ISO_2022,locale=ja,version=0" in ICU).
+ // Reject aliases with version numbers that are supported by some back-ends
+ // (such as "ISO_2022,locale=ja,version=0" in ICU).
for (const char* p = alias; *p; ++p) {
if (*p == ',')
return true;
}
- // 8859_1 is known to (at least) ICU, but other browsers don't support this name - and having it caused a compatibility
+ // 8859_1 is known to (at least) ICU, but other browsers don't support this
+ // name - and having it caused a compatibility
// problem, see bug 43554.
if (0 == strcmp(alias, "8859_1"))
return true;

Powered by Google App Engine
This is Rietveld 408576698