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

Issue 16625011: Add minimal implementation of unprefixed MediaSource API that has feature parity with prefixed API (Closed)

Created:
7 years, 6 months ago by acolwell GONE FROM CHROMIUM
Modified:
7 years, 6 months ago
Reviewers:
adamk
CC:
blink-reviews, feature-media-reviews_chromium.org, dglazkov+blink, eae+blinkwatch, adamk+blink_chromium.org
Visibility:
Public.

Description

Add minimal implementation of unprefixed MediaSource API that has feature parity with the prefixed API. BUG=239506 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=152379

Patch Set 1 : #

Total comments: 12

Patch Set 2 : Address CR comments #

Total comments: 10

Patch Set 3 : Address CR comments and include some LayoutTests #

Patch Set 4 : Added more LayoutTests #

Patch Set 5 : Rebase #

Patch Set 6 : Fix build buster caused by rebase #

Patch Set 7 : Fix MP4 expectations and rebase #

Patch Set 8 : Fix global-constructors-listing-expected.txt #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1285 lines, -188 lines) Patch
A LayoutTests/http/tests/media/media-source/mediasource-addsourcebuffer.html View 1 2 3 4 5 6 1 chunk +91 lines, -0 lines 0 comments Download
A LayoutTests/http/tests/media/media-source/mediasource-addsourcebuffer-expected.txt View 1 2 3 4 5 6 1 chunk +8 lines, -0 lines 0 comments Download
A LayoutTests/http/tests/media/media-source/mediasource-append-buffer.html View 1 2 3 1 chunk +161 lines, -0 lines 0 comments Download
A LayoutTests/http/tests/media/media-source/mediasource-append-buffer-expected.txt View 1 2 3 1 chunk +7 lines, -0 lines 0 comments Download
A LayoutTests/http/tests/media/media-source/mediasource-closed.html View 1 2 1 chunk +71 lines, -0 lines 0 comments Download
A LayoutTests/http/tests/media/media-source/mediasource-closed-expected.txt View 1 2 1 chunk +7 lines, -0 lines 0 comments Download
LayoutTests/http/tests/media/media-source/mediasource-is-type-supported.html View 1 2 1 chunk +83 lines, -0 lines 0 comments Download
A LayoutTests/http/tests/media/media-source/mediasource-is-type-supported-expected.txt View 1 2 3 4 5 6 1 chunk +5 lines, -0 lines 0 comments Download
A LayoutTests/http/tests/media/media-source/mediasource-play.html View 1 2 1 chunk +34 lines, -0 lines 0 comments Download
A LayoutTests/http/tests/media/media-source/mediasource-play-expected.txt View 1 2 1 chunk +3 lines, -0 lines 0 comments Download
A LayoutTests/http/tests/media/media-source/mediasource-sourcebufferlist.html View 1 2 3 1 chunk +93 lines, -0 lines 0 comments Download
A LayoutTests/http/tests/media/media-source/mediasource-sourcebufferlist-expected.txt View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
A LayoutTests/http/tests/media/media-source/mediasource-util.js View 1 2 3 4 5 1 chunk +202 lines, -0 lines 0 comments Download
M LayoutTests/webexposed/global-constructors-listing-expected.txt View 1 2 3 4 5 6 7 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/dom/EventNames.h View 1 chunk +8 lines, -0 lines 0 comments Download
M Source/core/dom/EventTarget.h View 1 chunk +0 lines, -2 lines 0 comments Download
M Source/core/dom/EventTargetFactory.in View 1 chunk +3 lines, -0 lines 0 comments Download
M Source/core/html/URL.idl View 1 chunk +1 line, -0 lines 0 comments Download
A + Source/modules/mediasource/MediaSource.h View 1 3 chunks +16 lines, -16 lines 0 comments Download
A + Source/modules/mediasource/MediaSource.cpp View 1 7 chunks +66 lines, -54 lines 0 comments Download
A + Source/modules/mediasource/MediaSource.idl View 1 2 3 4 5 3 chunks +7 lines, -9 lines 0 comments Download
M Source/modules/mediasource/MediaSourceBase.cpp View 1 chunk +3 lines, -1 line 0 comments Download
A + Source/modules/mediasource/SourceBuffer.h View 2 chunks +45 lines, -40 lines 0 comments Download
A Source/modules/mediasource/SourceBuffer.cpp View 1 2 1 chunk +296 lines, -0 lines 0 comments Download
A + Source/modules/mediasource/SourceBuffer.idl View 2 chunks +19 lines, -14 lines 0 comments Download
A + Source/modules/mediasource/SourceBufferList.h View 1 2 4 chunks +18 lines, -17 lines 0 comments Download
A + Source/modules/mediasource/SourceBufferList.cpp View 1 2 3 chunks +19 lines, -31 lines 0 comments Download
A + Source/modules/mediasource/SourceBufferList.idl View 1 2 3 4 2 chunks +5 lines, -4 lines 0 comments Download
M Source/modules/modules.gypi View 1 2 3 4 5 6 2 chunks +9 lines, -0 lines 0 comments Download

Messages

Total messages: 18 (0 generated)
acolwell GONE FROM CHROMIUM
LayoutTests are coming soon, but I wanted to get the review started. This change introduces ...
7 years, 6 months ago (2013-06-10 22:10:54 UTC) #1
adamk
Just a first run through. I suspect I'll see more the next time around, but ...
7 years, 6 months ago (2013-06-10 23:05:40 UTC) #2
acolwell GONE FROM CHROMIUM
https://codereview.chromium.org/16625011/diff/3001/Source/modules/mediasource/DOMWindowMediaSource.idl File Source/modules/mediasource/DOMWindowMediaSource.idl (right): https://codereview.chromium.org/16625011/diff/3001/Source/modules/mediasource/DOMWindowMediaSource.idl#newcode31 Source/modules/mediasource/DOMWindowMediaSource.idl:31: [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor MediaSource; On 2013/06/10 23:05:40, adamk wrote: ...
7 years, 6 months ago (2013-06-10 23:36:15 UTC) #3
adamk
A few more nits, but things look mostly good. Are you still planning on adding ...
7 years, 6 months ago (2013-06-11 18:19:26 UTC) #4
acolwell GONE FROM CHROMIUM
On 2013/06/11 18:19:26, adamk wrote: > A few more nits, but things look mostly good. ...
7 years, 6 months ago (2013-06-11 22:25:24 UTC) #5
acolwell GONE FROM CHROMIUM
Addressed comments and uploaded a few LayoutTests. I'm still working on a few more to ...
7 years, 6 months ago (2013-06-12 01:14:04 UTC) #6
adamk
Tests look good so far; would like to see more tests exercising events (e.g., {add,remove}sourcebuffer)
7 years, 6 months ago (2013-06-12 15:32:42 UTC) #7
acolwell GONE FROM CHROMIUM
I've added more LayoutTest. I think there is sufficient coverage now to consider this ready ...
7 years, 6 months ago (2013-06-12 23:04:46 UTC) #8
adamk
lgtm
7 years, 6 months ago (2013-06-12 23:43:41 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/acolwell@chromium.org/16625011/45001
7 years, 6 months ago (2013-06-13 00:00:07 UTC) #10
commit-bot: I haz the power
Retried try job too often on mac_layout_rel for step(s) webkit_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=mac_layout_rel&number=9509
7 years, 6 months ago (2013-06-13 07:50:13 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/acolwell@chromium.org/16625011/71001
7 years, 6 months ago (2013-06-13 17:22:31 UTC) #12
commit-bot: I haz the power
Retried try job too often on linux_layout_rel for step(s) webkit_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=linux_layout_rel&number=12605
7 years, 6 months ago (2013-06-13 18:18:13 UTC) #13
adamk
I think you'll actually need to update global-constructors-listing.html as you're adding new constructors to the ...
7 years, 6 months ago (2013-06-13 18:39:35 UTC) #14
adamk
On 2013/06/13 18:39:35, adamk wrote: > I think you'll actually need to update global-constructors-listing.html as ...
7 years, 6 months ago (2013-06-13 18:39:57 UTC) #15
acolwell GONE FROM CHROMIUM
On 2013/06/13 18:39:57, adamk wrote: > On 2013/06/13 18:39:35, adamk wrote: > > I think ...
7 years, 6 months ago (2013-06-13 19:13:00 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/acolwell@chromium.org/16625011/83001
7 years, 6 months ago (2013-06-13 19:47:42 UTC) #17
commit-bot: I haz the power
7 years, 6 months ago (2013-06-13 21:15:39 UTC) #18
Message was sent while issue was closed.
Change committed as 152379

Powered by Google App Engine
This is Rietveld 408576698