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

Unified Diff: third_party/WebKit/Source/core/fetch/FetchUtils.h

Issue 2610653002: Tidy up XMLHttpRequest::endLoading(). (Closed)
Patch Set: Created 3 years, 12 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/core/fetch/FetchUtils.h
diff --git a/third_party/WebKit/Source/core/fetch/FetchUtils.h b/third_party/WebKit/Source/core/fetch/FetchUtils.h
index 31657670ba0eb14af5982dcd8437dee9718669db..44e983bbb4e382da1c00e67233ee1f312dfe82fb 100644
--- a/third_party/WebKit/Source/core/fetch/FetchUtils.h
+++ b/third_party/WebKit/Source/core/fetch/FetchUtils.h
@@ -32,6 +32,10 @@ class CORE_EXPORT FetchUtils {
const HTTPHeaderMap&);
static AtomicString normalizeMethod(const AtomicString& method);
static String normalizeHeaderValue(const String& value);
+
+ static bool isSuccessfulStatusCode(int status) {
tyoshino (SeeGerritForStatus) 2017/01/05 05:54:24 how about using the term defined in the Fetch Stan
sof 2017/01/05 08:11:03 I consider "successful" the better term, but switc
+ return status >= 200 && status < 300;
+ }
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698