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'; |
} |