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

Unified Diff: third_party/WebKit/Source/platform/text/QuotedPrintable.cpp

Issue 2385283002: reflow comments in platform/{testing,text} (Closed)
Patch Set: idunnolol 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/text/QuotedPrintable.cpp
diff --git a/third_party/WebKit/Source/platform/text/QuotedPrintable.cpp b/third_party/WebKit/Source/platform/text/QuotedPrintable.cpp
index ae8d4e9fd14dbd3905737d657e350b392aab322e..377d5606472d616432c50e192cf501cfb93e1031 100644
--- a/third_party/WebKit/Source/platform/text/QuotedPrintable.cpp
+++ b/third_party/WebKit/Source/platform/text/QuotedPrintable.cpp
@@ -74,7 +74,8 @@ void quotedPrintableEncode(const char* input,
currentCharacter != '\t')
requiresEncoding = true;
- // Space and tab characters have to be encoded if they appear at the end of a line.
+ // Space and tab characters have to be encoded if they appear at the end of
+ // a line.
if (!requiresEncoding &&
(currentCharacter == '\t' || currentCharacter == ' ') &&
(isLastCharacter ||
@@ -149,7 +150,8 @@ void quotedPrintableDecode(const char* data,
continue;
if (!isASCIIHexDigit(upperCharacter) || !isASCIIHexDigit(lowerCharacter)) {
- // Invalid sequence, = followed by non hex digits, just insert the characters as is.
+ // Invalid sequence, = followed by non hex digits, just insert the
+ // characters as is.
out.append('=');
out.append(upperCharacter);
out.append(lowerCharacter);
« no previous file with comments | « third_party/WebKit/Source/platform/text/LocaleWin.cpp ('k') | third_party/WebKit/Source/platform/text/SegmentedString.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698