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

Unified Diff: third_party/WebKit/Source/modules/fetch/Response.cpp

Issue 2388423003: reflow comments in modules/[fetch,indexeddb] (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/modules/fetch/Response.cpp
diff --git a/third_party/WebKit/Source/modules/fetch/Response.cpp b/third_party/WebKit/Source/modules/fetch/Response.cpp
index f218924ad753a31326776bde7a87056fdcc826c0..fb7cb4e1292180c5300b0d15aa4a129a8a68c851 100644
--- a/third_party/WebKit/Source/modules/fetch/Response.cpp
+++ b/third_party/WebKit/Source/modules/fetch/Response.cpp
@@ -204,8 +204,8 @@ Response* Response::create(ScriptState* scriptState,
ExceptionState& exceptionState) {
unsigned short status = init.status;
- // "1. If |init|'s status member is not in the range 200 to 599, inclusive, throw a
- // RangeError."
+ // "1. If |init|'s status member is not in the range 200 to 599, inclusive,
+ // throw a RangeError."
if (status < 200 || 599 < status) {
exceptionState.throwRangeError(
ExceptionMessages::indexOutsideRange<unsigned>(

Powered by Google App Engine
This is Rietveld 408576698