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

Issue 1001233002: Streams Implementation Update: Reader name and Stream methods (Closed)

Created:
5 years, 9 months ago by yhirano
Modified:
5 years, 9 months ago
CC:
blink-reviews, vivekg, arv+blink, Inactive, vivekg_samsung
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Target Ref:
refs/heads/master
Project:
blink
Visibility:
Public.

Description

Streams Implementation Update: Reader name and Stream methods This CL is one of Streams Implementation Update series. This CL does: - Rename ExclusiveStreamReader to ReadableStreamReader - Remove ReadableStream.read, ReadableStream.ready and ReadableStream.state from IDL. BUG=393911 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=192075

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Total comments: 14

Patch Set 4 : #

Patch Set 5 : #

Patch Set 6 : #

Patch Set 7 : rebase #

Patch Set 8 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+171 lines, -901 lines) Patch
M LayoutTests/http/tests/fetch/script-tests/fetch-body-mixin.js View 1 2 3 chunks +20 lines, -14 lines 0 comments Download
M LayoutTests/http/tests/fetch/script-tests/stream-reader.js View 1 chunk +0 lines, -3 lines 0 comments Download
M LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js View 1 2 3 4 2 chunks +11 lines, -10 lines 0 comments Download
M LayoutTests/http/tests/xmlhttprequest/resources/response-stream-abort.js View 3 chunks +11 lines, -13 lines 0 comments Download
M LayoutTests/http/tests/xmlhttprequest/response-stream-cancel.html View 2 chunks +3 lines, -4 lines 0 comments Download
M LayoutTests/webexposed/global-interface-listing-dedicated-worker-expected.txt View 1 2 3 4 5 6 2 chunks +7 lines, -10 lines 0 comments Download
M LayoutTests/webexposed/global-interface-listing-expected.txt View 1 2 3 4 5 6 2 chunks +7 lines, -10 lines 0 comments Download
M LayoutTests/webexposed/global-interface-listing-shared-worker-expected.txt View 1 2 3 4 5 6 2 chunks +7 lines, -10 lines 0 comments Download
M Source/core/core.gypi View 1 2 3 4 5 6 7 3 chunks +4 lines, -4 lines 0 comments Download
D Source/core/streams/ExclusiveStreamReader.h View 1 chunk +0 lines, -62 lines 0 comments Download
D Source/core/streams/ExclusiveStreamReader.cpp View 1 chunk +0 lines, -198 lines 0 comments Download
D Source/core/streams/ExclusiveStreamReader.idl View 1 chunk +0 lines, -22 lines 0 comments Download
D Source/core/streams/ExclusiveStreamReaderTest.cpp View 1 chunk +0 lines, -434 lines 0 comments Download
M Source/core/streams/ReadableStream.h View 3 chunks +7 lines, -7 lines 0 comments Download
M Source/core/streams/ReadableStream.cpp View 1 2 3 5 chunks +7 lines, -7 lines 0 comments Download
M Source/core/streams/ReadableStream.idl View 1 2 3 1 chunk +1 line, -12 lines 0 comments Download
M Source/core/streams/ReadableStreamImpl.h View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
A + Source/core/streams/ReadableStreamReader.h View 4 chunks +11 lines, -11 lines 0 comments Download
A + Source/core/streams/ReadableStreamReader.cpp View 8 chunks +14 lines, -14 lines 0 comments Download
A + Source/core/streams/ReadableStreamReader.idl View 1 2 3 1 chunk +9 lines, -3 lines 0 comments Download
A + Source/core/streams/ReadableStreamReaderTest.cpp View 1 2 3 4 5 19 chunks +44 lines, -44 lines 0 comments Download
M Source/core/streams/ReadableStreamTest.cpp View 2 chunks +5 lines, -5 lines 0 comments Download
M Source/modules/fetch/Body.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/modules/fetch/Body.cpp View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 29 (14 generated)
yhirano
5 years, 9 months ago (2015-03-13 09:45:07 UTC) #2
tyoshino (SeeGerritForStatus)
lgtm https://codereview.chromium.org/1001233002/diff/40001/LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js File LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js (right): https://codereview.chromium.org/1001233002/diff/40001/LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js#newcode63 LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js:63: streamPromise.then(function(chunks) { add test.step_func( https://codereview.chromium.org/1001233002/diff/40001/Source/core/streams/ReadableStream.cpp File Source/core/streams/ReadableStream.cpp (right): ...
5 years, 9 months ago (2015-03-17 05:14:40 UTC) #3
yhirano
https://codereview.chromium.org/1001233002/diff/40001/LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js File LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js (right): https://codereview.chromium.org/1001233002/diff/40001/LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js#newcode63 LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js:63: streamPromise.then(function(chunks) { On 2015/03/17 05:14:39, tyoshino wrote: > add ...
5 years, 9 months ago (2015-03-17 05:24:15 UTC) #4
yhirano
https://codereview.chromium.org/1001233002/diff/40001/LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js File LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js (right): https://codereview.chromium.org/1001233002/diff/40001/LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js#newcode63 LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js:63: streamPromise.then(function(chunks) { On 2015/03/17 05:14:39, tyoshino wrote: > add ...
5 years, 9 months ago (2015-03-17 05:24:16 UTC) #5
yhirano
+kouhei for core/core.gypi
5 years, 9 months ago (2015-03-17 05:24:50 UTC) #7
kouhei (in TOK)
On 2015/03/17 05:24:50, yhirano wrote: > +kouhei for core/core.gypi core.gypi file rename lgtm
5 years, 9 months ago (2015-03-17 07:04:10 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1001233002/60001
5 years, 9 months ago (2015-03-17 07:07:25 UTC) #11
tyoshino (SeeGerritForStatus)
https://codereview.chromium.org/1001233002/diff/40001/LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js File LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js (right): https://codereview.chromium.org/1001233002/diff/40001/LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js#newcode63 LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js:63: streamPromise.then(function(chunks) { On 2015/03/17 05:24:15, yhirano wrote: > On ...
5 years, 9 months ago (2015-03-17 07:09:37 UTC) #12
yhirano
https://codereview.chromium.org/1001233002/diff/40001/LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js File LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js (right): https://codereview.chromium.org/1001233002/diff/40001/LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js#newcode63 LayoutTests/http/tests/xmlhttprequest/resources/response-stream.js:63: streamPromise.then(function(chunks) { On 2015/03/17 07:09:37, tyoshino wrote: > On ...
5 years, 9 months ago (2015-03-17 07:21:39 UTC) #14
tyoshino (SeeGerritForStatus)
lgtm
5 years, 9 months ago (2015-03-18 05:59:55 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1001233002/100001
5 years, 9 months ago (2015-03-18 06:29:21 UTC) #18
commit-bot: I haz the power
Try jobs failed on following builders: android_blink_compile_dbg on tryserver.blink (JOB_FAILED, http://build.chromium.org/p/tryserver.blink/builders/android_blink_compile_dbg/builds/31788) android_blink_compile_rel on tryserver.blink (JOB_FAILED, ...
5 years, 9 months ago (2015-03-18 06:34:47 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1001233002/120002
5 years, 9 months ago (2015-03-18 07:29:58 UTC) #24
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1001233002/150001
5 years, 9 months ago (2015-03-18 07:37:09 UTC) #28
commit-bot: I haz the power
5 years, 9 months ago (2015-03-18 09:30:06 UTC) #29
Message was sent while issue was closed.
Committed patchset #8 (id:150001) as
https://src.chromium.org/viewvc/blink?view=rev&revision=192075

Powered by Google App Engine
This is Rietveld 408576698