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

Issue 1827373002: Add another body function returning a V8 Extra ReadableStream to Response (Closed)

Created:
4 years, 9 months ago by yhirano
Modified:
4 years, 8 months ago
CC:
chromium-reviews, blink-reviews, kinuko+watch
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add another body function returning a V8 Extra ReadableStream to Response This CL adds a function to get body as a ReadableStream implemented with V8 Extra. The function is behind the flag. BUG=596832 Committed: https://crrev.com/2b12939638f2fe7c5eabcc0dae0cac479651d9ba Cr-Commit-Position: refs/heads/master@{#385377}

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Patch Set 5 : #

Total comments: 6

Patch Set 6 : rebase #

Patch Set 7 : #

Total comments: 6

Patch Set 8 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+108 lines, -8 lines) Patch
A third_party/WebKit/LayoutTests/http/tests/fetch/script-tests/v8-extra-body.js View 1 chunk +24 lines, -0 lines 0 comments Download
A + third_party/WebKit/LayoutTests/http/tests/fetch/serviceworker/v8-extra-body.html View 1 chunk +2 lines, -2 lines 0 comments Download
A + third_party/WebKit/LayoutTests/http/tests/fetch/serviceworker/v8-extra-body-base-https-other-https.html View 1 chunk +2 lines, -2 lines 0 comments Download
A + third_party/WebKit/LayoutTests/http/tests/fetch/window/v8-extra-body.html View 1 chunk +1 line, -1 line 0 comments Download
A + third_party/WebKit/LayoutTests/http/tests/fetch/window/v8-extra-body-base-https-other-https.html View 1 chunk +1 line, -1 line 0 comments Download
A + third_party/WebKit/LayoutTests/http/tests/fetch/workers/v8-extra-body.html View 1 chunk +1 line, -1 line 0 comments Download
A + third_party/WebKit/LayoutTests/http/tests/fetch/workers/v8-extra-body-base-https-other-https.html View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/serviceworker/webexposed/global-interface-listing-service-worker-expected.txt View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/webexposed/global-interface-listing-dedicated-worker-expected.txt View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/webexposed/global-interface-listing-shared-worker-expected.txt View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/modules/fetch/Body.h View 1 2 3 4 5 2 chunks +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/modules/fetch/Body.cpp View 1 2 3 4 5 6 7 3 chunks +68 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/modules/fetch/Response.idl View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 20 (7 generated)
yhirano
4 years, 9 months ago (2016-03-25 08:57:18 UTC) #3
yhirano
ping
4 years, 8 months ago (2016-03-30 12:02:49 UTC) #4
tyoshino (SeeGerritForStatus)
https://codereview.chromium.org/1827373002/diff/70001/third_party/WebKit/Source/modules/fetch/Body.cpp File third_party/WebKit/Source/modules/fetch/Body.cpp (right): https://codereview.chromium.org/1827373002/diff/70001/third_party/WebKit/Source/modules/fetch/Body.cpp#newcode23 third_party/WebKit/Source/modules/fetch/Body.cpp:23: #include "wtf/RefPtr.h" OwnPtr.h WebDataConsumerHandle.h https://codereview.chromium.org/1827373002/diff/70001/third_party/WebKit/Source/modules/fetch/Body.cpp#newcode107 third_party/WebKit/Source/modules/fetch/Body.cpp:107: DECLARE_EAGER_FINALIZATION_OPERATOR_NEW(); Could you ...
4 years, 8 months ago (2016-04-04 09:21:30 UTC) #5
yhirano
+sof for DECLARE_EAGER_FINALIZATION_OPERATOR_NEW. https://codereview.chromium.org/1827373002/diff/70001/third_party/WebKit/Source/modules/fetch/Body.cpp File third_party/WebKit/Source/modules/fetch/Body.cpp (right): https://codereview.chromium.org/1827373002/diff/70001/third_party/WebKit/Source/modules/fetch/Body.cpp#newcode23 third_party/WebKit/Source/modules/fetch/Body.cpp:23: #include "wtf/RefPtr.h" On 2016/04/04 09:21:30, tyoshino ...
4 years, 8 months ago (2016-04-04 09:28:20 UTC) #7
sof
https://codereview.chromium.org/1827373002/diff/110001/third_party/WebKit/Source/modules/fetch/Body.cpp File third_party/WebKit/Source/modules/fetch/Body.cpp (right): https://codereview.chromium.org/1827373002/diff/110001/third_party/WebKit/Source/modules/fetch/Body.cpp#newcode109 third_party/WebKit/Source/modules/fetch/Body.cpp:109: DECLARE_EAGER_FINALIZATION_OPERATOR_NEW(); this derived class looks fine & macro is ...
4 years, 8 months ago (2016-04-04 11:26:32 UTC) #8
yhirano
https://codereview.chromium.org/1827373002/diff/110001/third_party/WebKit/Source/modules/fetch/Body.cpp File third_party/WebKit/Source/modules/fetch/Body.cpp (right): https://codereview.chromium.org/1827373002/diff/110001/third_party/WebKit/Source/modules/fetch/Body.cpp#newcode133 third_party/WebKit/Source/modules/fetch/Body.cpp:133: size_t available; On 2016/04/04 11:26:32, sof wrote: > Don't ...
4 years, 8 months ago (2016-04-04 11:42:32 UTC) #9
sof
lgtm https://codereview.chromium.org/1827373002/diff/110001/third_party/WebKit/Source/modules/fetch/Response.idl File third_party/WebKit/Source/modules/fetch/Response.idl (right): https://codereview.chromium.org/1827373002/diff/110001/third_party/WebKit/Source/modules/fetch/Response.idl#newcode32 third_party/WebKit/Source/modules/fetch/Response.idl:32: [RuntimeEnabled=ResponseBodyWithV8ExtraStream, CallWith=ScriptState] any v8ExtraStreamBody(); On 2016/04/04 11:42:32, yhirano ...
4 years, 8 months ago (2016-04-04 11:47:23 UTC) #10
tyoshino (SeeGerritForStatus)
lgtm
4 years, 8 months ago (2016-04-05 05:46:26 UTC) #11
yhirano
+haraken for Source/platform/RuntimeEnabledFeatures.in.
4 years, 8 months ago (2016-04-06 01:28:06 UTC) #13
haraken
On 2016/04/06 01:28:06, yhirano wrote: > +haraken for Source/platform/RuntimeEnabledFeatures.in. LGTM
4 years, 8 months ago (2016-04-06 01:36:38 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1827373002/130001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1827373002/130001
4 years, 8 months ago (2016-04-06 01:43:56 UTC) #16
commit-bot: I haz the power
Committed patchset #8 (id:130001)
4 years, 8 months ago (2016-04-06 03:24:47 UTC) #18
commit-bot: I haz the power
4 years, 8 months ago (2016-04-06 03:25:35 UTC) #20
Message was sent while issue was closed.
Patchset 8 (id:??) landed as
https://crrev.com/2b12939638f2fe7c5eabcc0dae0cac479651d9ba
Cr-Commit-Position: refs/heads/master@{#385377}

Powered by Google App Engine
This is Rietveld 408576698