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

Unified Diff: third_party/WebKit/Source/platform/WebIconSizesParser.cpp

Issue 2388303002: reflow comments in platform/ (Closed)
Patch Set: Created 4 years, 2 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/platform/WebIconSizesParser.cpp
diff --git a/third_party/WebKit/Source/platform/WebIconSizesParser.cpp b/third_party/WebKit/Source/platform/WebIconSizesParser.cpp
index 02820d4c25e9bd3c407eb4e0ec31305f0cefc8fa..1303dce39753dcff6bff85e84563df3593f162c6 100644
--- a/third_party/WebKit/Source/platform/WebIconSizesParser.cpp
+++ b/third_party/WebKit/Source/platform/WebIconSizesParser.cpp
@@ -19,7 +19,9 @@ static inline bool isIntegerStart(UChar c) {
}
static bool isWhitespace(UChar c) {
- // Sizes space characters are U+0020 SPACE, U+0009 CHARACTER TABULATION (tab), U+000A LINE FEED (LF), U+000C FORM FEED (FF), and U+000D CARRIAGE RETURN (CR).
+ // Sizes space characters are U+0020 SPACE, U+0009 CHARACTER TABULATION (tab),
+ // U+000A LINE FEED (LF), U+000C FORM FEED (FF),
+ // and U+000D CARRIAGE RETURN (CR).
return c == ' ' || c == '\t' || c == '\n' || c == '\f' || c == '\r';
}
« no previous file with comments | « third_party/WebKit/Source/platform/UserGestureIndicator.cpp ('k') | third_party/WebKit/Source/platform/Widget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698