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

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

Issue 1446963002: CREDENTIAL: Teach Fetch to handle PasswordCredential objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@opaque
Patch Set: webexposed Created 5 years, 1 month 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
« no previous file with comments | « third_party/WebKit/Source/modules/fetch/DEPS ('k') | third_party/WebKit/Source/modules/fetch/RequestInit.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/fetch/Request.cpp
diff --git a/third_party/WebKit/Source/modules/fetch/Request.cpp b/third_party/WebKit/Source/modules/fetch/Request.cpp
index 24239c4836f4347a712c41c4b901678217ac319a..6a13627398b72effb02e51e50ddc994485ad3f98 100644
--- a/third_party/WebKit/Source/modules/fetch/Request.cpp
+++ b/third_party/WebKit/Source/modules/fetch/Request.cpp
@@ -316,6 +316,22 @@ Request* Request::createRequestWithRequestOrString(ScriptState* scriptState, Req
if (temporaryBody)
r->m_request->setBuffer(temporaryBody);
+ // https://w3c.github.io/webappsec-credential-management/#monkey-patching-fetch-3
+ // "If |init|'s body member is a 'Credential' object:"
+ if (init.isCredentialRequest) {
+ // "1. If |r|'s url is not the same as |r|'s client’s origin, throw a TypeError."
+ if (!origin->canRequest(r->url())) {
+ exceptionState.throwTypeError("Credentials may only be submitted to same-origin endpoints.");
+ return nullptr;
+ }
+ // "2. Set |r|'s redirect mode to "error"."
+ r->m_request->setRedirect(WebURLRequest::FetchRedirectModeError);
+ // "3. Set |r|'s skip-service-worker flag."
+ // TODO(mkwst): Set this flag.
+ // "4. Set |r|'s opaque flag."
+ r->setOpaque();
+ }
+
// "34. Set |r|'s MIME type to the result of extracting a MIME type from
// |r|'s request's header list."
r->m_request->setMIMEType(r->m_request->headerList()->extractMIMEType());
« no previous file with comments | « third_party/WebKit/Source/modules/fetch/DEPS ('k') | third_party/WebKit/Source/modules/fetch/RequestInit.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698