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

Unified Diff: third_party/WebKit/Source/platform/exported/WebHTTPLoadInfo.cpp

Issue 2390833002: reflow comments in platform/{animation,blob,clipboard,exported} (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/exported/WebHTTPLoadInfo.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebHTTPLoadInfo.cpp b/third_party/WebKit/Source/platform/exported/WebHTTPLoadInfo.cpp
index ba4a096110b3031ade76ec64994a06d11ebc735e..86d91abaf5456de45bc33a10a71381f4ba88f4c3 100644
--- a/third_party/WebKit/Source/platform/exported/WebHTTPLoadInfo.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebHTTPLoadInfo.cpp
@@ -89,7 +89,8 @@ static void addHeader(HTTPHeaderMap* map,
const WebString& name,
const WebString& value) {
HTTPHeaderMap::AddResult result = map->add(name, value);
- // It is important that values are separated by '\n', not comma, otherwise Set-Cookie header is not parseable.
+ // It is important that values are separated by '\n', not comma, otherwise
+ // Set-Cookie header is not parseable.
if (!result.isNewEntry)
result.storedValue->value =
result.storedValue->value + "\n" + String(value);

Powered by Google App Engine
This is Rietveld 408576698