Chromium Code Reviews

Issue 1446963002: CREDENTIAL: Teach Fetch to handle PasswordCredential objects. (Closed)

Created:
5 years, 1 month ago by Mike West
Modified:
5 years ago
Reviewers:
tyoshino (SeeGerritForStatus), philipj_slow, horo
CC:
blink-reviews, chromium-reviews
Base URL:
https://chromium.googlesource.com/chromium/src.git@opaque
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

CREDENTIAL: Teach Fetch to handle PasswordCredential objects. As defined at [1], Fetch ought to be able to submit PasswordCredential objects directly to an endpoint rather than walking through a FormData intermediary. This patch implements that integration with 'RequestInit' by teaching 'PasswordCredential' how to serialize itself as an 'EncodedFormData' object. This patch also kills off the 'toFormData()' method of 'PasswordCredential', bringing it into line with the specification changes at [2]. (TBRing myself because the presubmit script doesn't understand that I own the new DEPS target) [1]: http://w3c.github.io/webappsec-credential-management/#monkey-patching-fetch-1 [2]: http://w3c.github.io/webappsec-credential-management/#passwordcredential BUG=556431 TBR=mkwst@chromium.org Committed: https://crrev.com/fa8fab55d02ac6bbffc82550c1c0ef9e6f0d8500 Cr-Commit-Position: refs/heads/master@{#360427}

Patch Set 1 #

Patch Set 2 : URLSearchParams #

Patch Set 3 : Better #

Total comments: 31

Patch Set 4 : Feedback. #

Total comments: 1

Patch Set 5 : Ugh. #

Patch Set 6 : webexposed #

Unified diffs Side-by-side diffs Stats (+337 lines, -32 lines)
M third_party/WebKit/LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html View 1 chunk +3 lines, -1 line 0 comments
M third_party/WebKit/LayoutTests/http/tests/credentialmanager/passwordcredential-basics.html View 3 chunks +26 lines, -4 lines 0 comments
A third_party/WebKit/LayoutTests/http/tests/credentialmanager/passwordcredential-fetch.html View 1 chunk +162 lines, -0 lines 0 comments
A third_party/WebKit/LayoutTests/http/tests/credentialmanager/resources/echo-post.php View 1 chunk +3 lines, -0 lines 0 comments
A third_party/WebKit/LayoutTests/http/tests/credentialmanager/resources/echo-raw-post.php View 1 chunk +3 lines, -0 lines 0 comments
M third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt View 1 chunk +6 lines, -1 line 0 comments
M third_party/WebKit/Source/core/dom/URLSearchParams.h View 1 chunk +1 line, -0 lines 0 comments
M third_party/WebKit/Source/modules/credentialmanager/Credential.h View 1 chunk +1 line, -1 line 0 comments
M third_party/WebKit/Source/modules/credentialmanager/PasswordCredential.h View 3 chunks +18 lines, -2 lines 0 comments
M third_party/WebKit/Source/modules/credentialmanager/PasswordCredential.cpp View 3 chunks +32 lines, -8 lines 0 comments
M third_party/WebKit/Source/modules/credentialmanager/PasswordCredential.idl View 1 chunk +10 lines, -2 lines 0 comments
M third_party/WebKit/Source/modules/fetch/Body.h View 1 chunk +11 lines, -0 lines 0 comments
M third_party/WebKit/Source/modules/fetch/Body.cpp View 6 chunks +26 lines, -13 lines 0 comments
M third_party/WebKit/Source/modules/fetch/DEPS View 1 chunk +1 line, -0 lines 0 comments
M third_party/WebKit/Source/modules/fetch/Request.cpp View 1 chunk +16 lines, -0 lines 0 comments
M third_party/WebKit/Source/modules/fetch/RequestInit.h View 1 chunk +2 lines, -0 lines 0 comments
M third_party/WebKit/Source/modules/fetch/RequestInit.cpp View 3 chunks +16 lines, -0 lines 0 comments

Messages

Total messages: 31 (15 generated)
Mike West
horo@, tyoshino@, would you mind taking a look at the Fetch integration? (Note that this ...
5 years, 1 month ago (2015-11-17 14:42:57 UTC) #3
philipj_slow
lgtm % nits for everything outside modules/fetch/, but I wouldn't mind taking a second look ...
5 years, 1 month ago (2015-11-17 15:53:59 UTC) #5
horo
lgtm with nits https://codereview.chromium.org/1446963002/diff/40001/third_party/WebKit/Source/modules/fetch/Body.h File third_party/WebKit/Source/modules/fetch/Body.h (right): https://codereview.chromium.org/1446963002/diff/40001/third_party/WebKit/Source/modules/fetch/Body.h#newcode11 third_party/WebKit/Source/modules/fetch/Body.h:11: #include "core/dom/DOMException.h" remove https://codereview.chromium.org/1446963002/diff/40001/third_party/WebKit/Source/modules/fetch/Request.cpp File third_party/WebKit/Source/modules/fetch/Request.cpp ...
5 years, 1 month ago (2015-11-18 05:14:10 UTC) #6
Mike West
Thanks to you both. https://codereview.chromium.org/1446963002/diff/40001/third_party/WebKit/LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html File third_party/WebKit/LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html (right): https://codereview.chromium.org/1446963002/diff/40001/third_party/WebKit/LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html#newcode97 third_party/WebKit/LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html:97: assert_equals(c.additionalData, null); On 2015/11/17 at ...
5 years, 1 month ago (2015-11-18 09:12:51 UTC) #7
philipj_slow
https://codereview.chromium.org/1446963002/diff/40001/third_party/WebKit/LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html File third_party/WebKit/LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html (right): https://codereview.chromium.org/1446963002/diff/40001/third_party/WebKit/LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html#newcode97 third_party/WebKit/LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html:97: assert_equals(c.additionalData, null); On 2015/11/18 09:12:50, Mike West wrote: > ...
5 years, 1 month ago (2015-11-18 10:00:05 UTC) #8
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1446963002/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1446963002/60001
5 years, 1 month ago (2015-11-18 13:46:24 UTC) #10
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/119745)
5 years, 1 month ago (2015-11-18 13:54:25 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1446963002/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1446963002/100001
5 years, 1 month ago (2015-11-18 15:04:28 UTC) #18
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/119759)
5 years, 1 month ago (2015-11-18 15:13:53 UTC) #20
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1446963002/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1446963002/100001
5 years, 1 month ago (2015-11-18 16:09:31 UTC) #23
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/136809)
5 years, 1 month ago (2015-11-18 19:15:56 UTC) #25
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1446963002/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1446963002/100001
5 years, 1 month ago (2015-11-18 20:46:34 UTC) #27
commit-bot: I haz the power
Committed patchset #6 (id:100001)
5 years, 1 month ago (2015-11-18 22:06:18 UTC) #28
commit-bot: I haz the power
Patchset 6 (id:??) landed as https://crrev.com/fa8fab55d02ac6bbffc82550c1c0ef9e6f0d8500 Cr-Commit-Position: refs/heads/master@{#360427}
5 years, 1 month ago (2015-11-18 22:07:55 UTC) #29
tyoshino (SeeGerritForStatus)
Sorry for delay. Found some issues. I'll send a follow up CL tomorrow instead of ...
5 years ago (2015-11-24 14:53:34 UTC) #30
tyoshino (SeeGerritForStatus)
5 years ago (2015-11-25 14:44:49 UTC) #31
Message was sent while issue was closed.
On 2015/11/24 14:53:34, tyoshino wrote:
> Sorry for delay. Found some issues. I'll send a follow up CL tomorrow instead
of
> making comments here.

Done
- https://codereview.chromium.org/1476003002/
- https://codereview.chromium.org/1472143003/

Powered by Google App Engine