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

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

Issue 2388423003: reflow comments in modules/[fetch,indexeddb] (Closed)
Patch Set: rebase 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 af07b7c464e9254238f02e9b2c22c275e1bd5c60..7a8ad09b960a7d4df3c3138cad3971c452cefd1d 100644
--- a/third_party/WebKit/Source/modules/fetch/Response.cpp
+++ b/third_party/WebKit/Source/modules/fetch/Response.cpp
@@ -203,8 +203,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>(
« no previous file with comments | « third_party/WebKit/Source/modules/fetch/RequestInit.cpp ('k') | third_party/WebKit/Source/modules/filesystem/DOMFilePath.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698