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

Issue 1522463003: Refactor resource load and resource selection algorithms as per spec (Closed)

Created:
5 years ago by Srirama
Modified:
4 years, 9 months ago
CC:
chromium-reviews, nessy, mlamouri+watch-blink_chromium.org, blink-reviews-html_chromium.org, gasubic, fs, eric.carlson_apple.com, feature-media-reviews_chromium.org, dglazkov+blink, blink-reviews, vcarbune.chromium, wolenetz, ddorwin
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Refactor resource load and resource selection algorithms as per spec In the current code the resource load and resource selection algorithms were mixed and there are no explicit entry points. Added new functions invokeLoadAlgorithm and invokeResourceSelectionAlgorithm to separate them and partially updated the code to match the spec. BUG=592396 Committed: https://crrev.com/4563c7c2c70ab5f09a017cad834d995485f75ec0 Cr-Commit-Position: refs/heads/master@{#381203}

Patch Set 1 #

Patch Set 2 : Removed TODO comment #

Total comments: 3

Patch Set 3 : Update per spec as per review comments #

Total comments: 4

Patch Set 4 : keep function name as prepareForLoad #

Total comments: 1

Patch Set 5 : Modified as per suggestion #

Total comments: 17

Patch Set 6 : Address review comments #

Total comments: 4

Patch Set 7 : Fixed test failures #

Total comments: 13

Patch Set 8 : Fixed review comments #

Patch Set 9 : Removed prepareToPlay and refactored code in call sites #

Total comments: 14

Patch Set 10 : Fixed review comments and rebased to latest #

Total comments: 7

Patch Set 11 : Address review comments #

Patch Set 12 : Added tests using internals.idl #

Total comments: 16

Patch Set 13 : address nits #

Total comments: 1

Patch Set 14 : address nits #

Total comments: 1

Patch Set 15 : Make preloadTypeToString a helper function #

Total comments: 1

Patch Set 16 : Move preloadTypeToString to anonymous namespace #

Unified diffs Side-by-side diffs Delta from patch set Stats (+144 lines, -84 lines) Patch
M third_party/WebKit/LayoutTests/fast/mediacapturefromelement/HTMLMediaElementCapture-creation.html View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +11 lines, -10 lines 0 comments Download
M third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/embedded-content/media-elements/loading-the-media-resource/load-removes-queued-error-event-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-load-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
A third_party/WebKit/LayoutTests/media/video-force-preload-none-to-metadata-on-load.html View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +15 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/media/video-force-preload-none-to-metadata-on-play.html View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +15 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLMediaElement.h View 1 2 3 4 5 6 7 8 9 10 11 12 14 5 chunks +7 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLMediaElement.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 29 chunks +86 lines, -66 lines 0 comments Download
M third_party/WebKit/Source/core/testing/Internals.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/testing/Internals.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +6 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/testing/Internals.idl View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 99 (29 generated)
Srirama
This is one more change based on our discussions in https://codereview.chromium.org/1416073002/. PTAL.
5 years ago (2015-12-11 14:53:41 UTC) #3
Srirama
5 years ago (2015-12-11 14:54:18 UTC) #5
philipj_slow
https://codereview.chromium.org/1522463003/diff/20001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1522463003/diff/20001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode474 third_party/WebKit/Source/core/html/HTMLMediaElement.cpp:474: m_pendingActionFlags &= ~LoadMediaResource; This does much less than clearMediaPlayer, ...
5 years ago (2015-12-11 15:01:51 UTC) #6
philipj_slow
Started a dry run to see if tests still pass.
5 years ago (2015-12-11 15:02:11 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/1522463003/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1522463003/20001
5 years ago (2015-12-11 15:02:41 UTC) #9
Srirama
https://codereview.chromium.org/1522463003/diff/20001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1522463003/diff/20001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode474 third_party/WebKit/Source/core/html/HTMLMediaElement.cpp:474: m_pendingActionFlags &= ~LoadMediaResource; On 2015/12/11 15:01:51, philipj wrote: > ...
5 years ago (2015-12-11 15:05:47 UTC) #10
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
5 years ago (2015-12-11 18:36:23 UTC) #12
philipj_slow
https://codereview.chromium.org/1522463003/diff/20001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1522463003/diff/20001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode474 third_party/WebKit/Source/core/html/HTMLMediaElement.cpp:474: m_pendingActionFlags &= ~LoadMediaResource; On 2015/12/11 15:05:47, Srirama wrote: > ...
5 years ago (2015-12-14 14:30:40 UTC) #13
Srirama
On 2015/12/14 14:30:40, philipj wrote: > https://codereview.chromium.org/1522463003/diff/20001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp > File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): > > https://codereview.chromium.org/1522463003/diff/20001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode474 > ...
5 years ago (2015-12-14 14:56:24 UTC) #14
philipj_slow
On 2015/12/14 14:56:24, Srirama wrote: > On 2015/12/14 14:30:40, philipj wrote: > > > https://codereview.chromium.org/1522463003/diff/20001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp ...
5 years ago (2015-12-14 15:47:38 UTC) #15
philipj_slow
5 years ago (2015-12-14 15:47:46 UTC) #16
Srirama
Thanks. So our ultimate aim is to clean up the code and make it as ...
5 years ago (2015-12-16 07:33:43 UTC) #18
philipj_slow
https://codereview.chromium.org/1522463003/diff/40001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1522463003/diff/40001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode507 third_party/WebKit/Source/core/html/HTMLMediaElement.cpp:507: m_pendingActionFlags |= LoadMediaResource; On 2015/12/16 07:33:43, Srirama wrote: > ...
5 years ago (2015-12-16 15:51:07 UTC) #19
Srirama
On 2015/12/16 15:51:07, philipj wrote: > https://codereview.chromium.org/1522463003/diff/40001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp > File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): > > https://codereview.chromium.org/1522463003/diff/40001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode507 > ...
5 years ago (2015-12-17 06:54:35 UTC) #21
philipj_slow
https://codereview.chromium.org/1522463003/diff/60001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1522463003/diff/60001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode474 third_party/WebKit/Source/core/html/HTMLMediaElement.cpp:474: prepareForLoad(); I think that this bit is made worse ...
5 years ago (2015-12-18 15:12:24 UTC) #22
Srirama
On 2015/12/18 15:12:24, philipj wrote: > https://codereview.chromium.org/1522463003/diff/60001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp > File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): > > https://codereview.chromium.org/1522463003/diff/60001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode474 > ...
5 years ago (2015-12-21 08:35:59 UTC) #24
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1522463003/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1522463003/100001
4 years, 11 months ago (2016-01-18 03:44:25 UTC) #26
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/167390)
4 years, 11 months ago (2016-01-18 04:37:23 UTC) #28
philipj_slow
It's been a long time, a lot of vacation over Christmas for me. I've taken ...
4 years, 11 months ago (2016-01-21 12:48:11 UTC) #29
Srirama
On 2016/01/21 12:48:11, philipj_OOO_til_Jan25 wrote: > It's been a long time, a lot of vacation ...
4 years, 11 months ago (2016-01-22 13:05:40 UTC) #30
Srirama
https://codereview.chromium.org/1522463003/diff/100001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (left): https://codereview.chromium.org/1522463003/diff/100001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#oldcode799 third_party/WebKit/Source/core/html/HTMLMediaElement.cpp:799: // 2 - Asynchronously await a stable state. On ...
4 years, 10 months ago (2016-01-28 11:31:03 UTC) #31
Srirama
On 2016/01/28 11:31:03, Srirama wrote: > https://codereview.chromium.org/1522463003/diff/100001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp > File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (left): > > https://codereview.chromium.org/1522463003/diff/100001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#oldcode799 > ...
4 years, 10 months ago (2016-01-29 14:55:10 UTC) #32
philipj_slow
On 2016/01/29 14:55:10, Srirama wrote: > @Philip, there are some encrypted media test cases failing. ...
4 years, 10 months ago (2016-02-02 09:58:35 UTC) #33
Srirama
On 2016/02/02 09:58:35, philipj_UTC7 wrote: > On 2016/01/29 14:55:10, Srirama wrote: > > > @Philip, ...
4 years, 10 months ago (2016-02-02 13:54:19 UTC) #34
philipj_slow
Not sure if you reached out via email, but otherwise, here's ddorwin@ who knows everything ...
4 years, 10 months ago (2016-02-02 16:40:09 UTC) #36
Srirama
On 2016/02/02 16:40:09, philipj_UTC7 wrote: > Not sure if you reached out via email, but ...
4 years, 10 months ago (2016-02-02 17:50:15 UTC) #37
ddorwin
The set of tests failing all use TestDifferentContainers [1]. You can see that the names ...
4 years, 10 months ago (2016-02-02 20:24:07 UTC) #38
ddorwin
https://codereview.chromium.org/1522463003/diff/120001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1522463003/diff/120001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode462 third_party/WebKit/Source/core/html/HTMLMediaElement.cpp:462: invokeLoadAlgorithm(); I don't know if this is related, but ...
4 years, 10 months ago (2016-02-02 20:24:23 UTC) #39
jrummell
https://codereview.chromium.org/1522463003/diff/120001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1522463003/diff/120001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode529 third_party/WebKit/Source/core/html/HTMLMediaElement.cpp:529: invokeResourceSelectionAlgorithm(); Is this correct? previous calls to scheduleDelayedAction(LoadMediaResource) are ...
4 years, 10 months ago (2016-02-02 21:39:08 UTC) #41
Srirama
On 2016/02/02 21:39:08, jrummell wrote: > https://codereview.chromium.org/1522463003/diff/120001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp > File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): > > https://codereview.chromium.org/1522463003/diff/120001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode529 > ...
4 years, 10 months ago (2016-02-03 12:54:18 UTC) #42
Srirama
On 2016/02/03 12:54:18, Srirama wrote: > On 2016/02/02 21:39:08, jrummell wrote: > > > https://codereview.chromium.org/1522463003/diff/120001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp ...
4 years, 10 months ago (2016-02-08 17:18:54 UTC) #47
philipj_slow
OK, it was a good move to deal only with the algorithm refactoring in this ...
4 years, 10 months ago (2016-02-09 07:34:34 UTC) #48
Srirama
https://codereview.chromium.org/1522463003/diff/200001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1522463003/diff/200001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode462 third_party/WebKit/Source/core/html/HTMLMediaElement.cpp:462: clearMediaPlayer(LoadMediaResource); On 2016/02/09 07:34:34, philipj_UTC7 wrote: > As I ...
4 years, 10 months ago (2016-02-09 14:50:46 UTC) #49
philipj_slow
https://codereview.chromium.org/1522463003/diff/200001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1522463003/diff/200001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode703 third_party/WebKit/Source/core/html/HTMLMediaElement.cpp:703: scheduleNextSourceChild(); On 2016/02/09 14:50:46, Srirama wrote: > On 2016/02/09 ...
4 years, 10 months ago (2016-02-10 05:02:30 UTC) #50
Srirama
https://codereview.chromium.org/1522463003/diff/200001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1522463003/diff/200001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode703 third_party/WebKit/Source/core/html/HTMLMediaElement.cpp:703: scheduleNextSourceChild(); On 2016/02/10 05:02:30, philipj_OOO_til_Feb15 wrote: > On 2016/02/09 ...
4 years, 10 months ago (2016-02-10 11:16:19 UTC) #51
Srirama
On 2016/02/10 11:16:19, Srirama wrote: > https://codereview.chromium.org/1522463003/diff/200001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp > File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): > > https://codereview.chromium.org/1522463003/diff/200001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode703 > ...
4 years, 10 months ago (2016-02-10 12:17:38 UTC) #52
philipj_slow
I've been OOO for a bit, sorry for the delay. https://codereview.chromium.org/1522463003/diff/200001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1522463003/diff/200001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode703 ...
4 years, 10 months ago (2016-02-16 12:19:34 UTC) #53
Srirama
On 2016/02/16 12:19:34, philipj_UTC7 wrote: > I've been OOO for a bit, sorry for the ...
4 years, 10 months ago (2016-02-16 13:56:19 UTC) #54
Srirama
On 2016/02/16 13:56:19, Srirama wrote: > On 2016/02/16 12:19:34, philipj_UTC7 wrote: > > I've been ...
4 years, 10 months ago (2016-02-16 14:10:57 UTC) #55
philipj_slow
On 2016/02/16 14:10:57, Srirama wrote: > Regarding the first point: > "1. A flag which ...
4 years, 10 months ago (2016-02-16 16:48:29 UTC) #56
philipj_slow
Any progress on this? In https://bugs.chromium.org/p/chromium/issues/detail?id=587789#c19 it looks like our bugs here is the source ...
4 years, 9 months ago (2016-03-07 11:14:55 UTC) #57
Srirama
On 2016/03/07 11:14:55, philipj_UTC7 wrote: > Any progress on this? In > https://bugs.chromium.org/p/chromium/issues/detail?id=587789#c19 it looks ...
4 years, 9 months ago (2016-03-07 11:26:48 UTC) #59
Srirama
On 2016/03/07 11:26:48, Srirama wrote: > On 2016/03/07 11:14:55, philipj_UTC7 wrote: > > Any progress ...
4 years, 9 months ago (2016-03-08 11:50:56 UTC) #60
philipj_slow
On 2016/03/08 11:50:56, Srirama wrote: > On 2016/03/07 11:26:48, Srirama wrote: > > On 2016/03/07 ...
4 years, 9 months ago (2016-03-09 09:12:00 UTC) #61
Srirama
On 2016/03/09 09:12:00, philipj_UTC7 wrote: > On 2016/03/08 11:50:56, Srirama wrote: > > On 2016/03/07 ...
4 years, 9 months ago (2016-03-09 09:15:48 UTC) #62
philipj_slow
https://codereview.chromium.org/1522463003/diff/240001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1522463003/diff/240001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode706 third_party/WebKit/Source/core/html/HTMLMediaElement.cpp:706: prepareForLoad(); There ought to be a call to invokeLoadAlgorithm() ...
4 years, 9 months ago (2016-03-09 09:16:00 UTC) #63
philipj_slow
https://codereview.chromium.org/1522463003/diff/240001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (left): https://codereview.chromium.org/1522463003/diff/240001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#oldcode1617 third_party/WebKit/Source/core/html/HTMLMediaElement.cpp:1617: startDeferredLoad(); OK, so the removal is this code is ...
4 years, 9 months ago (2016-03-09 09:27:23 UTC) #64
philipj_slow
https://codereview.chromium.org/1522463003/diff/240001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1522463003/diff/240001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode706 third_party/WebKit/Source/core/html/HTMLMediaElement.cpp:706: prepareForLoad(); On 2016/03/09 09:27:23, philipj_UTC7 wrote: > On 2016/03/09 ...
4 years, 9 months ago (2016-03-09 09:30:22 UTC) #65
Srirama
PTAL https://codereview.chromium.org/1522463003/diff/240001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (left): https://codereview.chromium.org/1522463003/diff/240001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#oldcode1617 third_party/WebKit/Source/core/html/HTMLMediaElement.cpp:1617: startDeferredLoad(); On 2016/03/09 09:27:23, philipj_UTC7 wrote: > OK, ...
4 years, 9 months ago (2016-03-09 12:26:22 UTC) #66
Srirama
On 2016/03/09 12:26:22, Srirama wrote: > PTAL > > https://codereview.chromium.org/1522463003/diff/240001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp > File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (left): > ...
4 years, 9 months ago (2016-03-11 10:07:44 UTC) #67
philipj_slow
OK, code changes now look good, but some test coverage is needed. If possible please ...
4 years, 9 months ago (2016-03-11 12:52:42 UTC) #68
philipj_slow
Oh, it looks like clearMediaPlayer() is now only called from stop(), which if the final ...
4 years, 9 months ago (2016-03-11 13:07:50 UTC) #69
Srirama
This CL has lot of refactoring without much changes in behavior. So do you want ...
4 years, 9 months ago (2016-03-11 14:58:20 UTC) #70
philipj_slow
https://codereview.chromium.org/1522463003/diff/260001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1522463003/diff/260001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode1952 third_party/WebKit/Source/core/html/HTMLMediaElement.cpp:1952: if (m_forceEffectivePreloadAuto && preload == WebMediaPlayer::PreloadNone) On 2016/03/11 14:58:20, ...
4 years, 9 months ago (2016-03-11 18:57:38 UTC) #71
Srirama
On 2016/03/11 18:57:38, philipj_UTC7 wrote: > https://codereview.chromium.org/1522463003/diff/260001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp > File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): > > https://codereview.chromium.org/1522463003/diff/260001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode1952 > ...
4 years, 9 months ago (2016-03-14 10:41:36 UTC) #73
philipj_slow
lgtm % nits https://codereview.chromium.org/1522463003/diff/320001/third_party/WebKit/LayoutTests/fast/mediacapturefromelement/HTMLMediaElementCapture-creation.html File third_party/WebKit/LayoutTests/fast/mediacapturefromelement/HTMLMediaElementCapture-creation.html (right): https://codereview.chromium.org/1522463003/diff/320001/third_party/WebKit/LayoutTests/fast/mediacapturefromelement/HTMLMediaElementCapture-creation.html#newcode22 third_party/WebKit/LayoutTests/fast/mediacapturefromelement/HTMLMediaElementCapture-creation.html:22: video.load(); The extra load() after setting ...
4 years, 9 months ago (2016-03-14 13:03:15 UTC) #74
Srirama
PTAL. https://codereview.chromium.org/1522463003/diff/320001/third_party/WebKit/LayoutTests/fast/mediacapturefromelement/HTMLMediaElementCapture-creation.html File third_party/WebKit/LayoutTests/fast/mediacapturefromelement/HTMLMediaElementCapture-creation.html (right): https://codereview.chromium.org/1522463003/diff/320001/third_party/WebKit/LayoutTests/fast/mediacapturefromelement/HTMLMediaElementCapture-creation.html#newcode22 third_party/WebKit/LayoutTests/fast/mediacapturefromelement/HTMLMediaElementCapture-creation.html:22: video.load(); On 2016/03/14 13:03:15, philipj_UTC7 wrote: > The ...
4 years, 9 months ago (2016-03-14 15:12:54 UTC) #75
philipj_slow
Still lgtm % nits. Feel free to CQ without further review when addressed. https://codereview.chromium.org/1522463003/diff/320001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp File ...
4 years, 9 months ago (2016-03-14 15:59:56 UTC) #76
jrummell
rs LGTM
4 years, 9 months ago (2016-03-15 00:12:39 UTC) #77
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1522463003/360001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1522463003/360001
4 years, 9 months ago (2016-03-15 03:48:56 UTC) #80
philipj_slow
https://codereview.chromium.org/1522463003/diff/360001/third_party/WebKit/Source/core/html/HTMLMediaElement.h File third_party/WebKit/Source/core/html/HTMLMediaElement.h (right): https://codereview.chromium.org/1522463003/diff/360001/third_party/WebKit/Source/core/html/HTMLMediaElement.h#newcode115 third_party/WebKit/Source/core/html/HTMLMediaElement.h:115: String preloadTypeToString(WebMediaPlayer::Preload preloadType) const; This ought to be a ...
4 years, 9 months ago (2016-03-15 04:51:34 UTC) #81
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1522463003/380001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1522463003/380001
4 years, 9 months ago (2016-03-15 05:13:28 UTC) #85
Srirama
On 2016/03/15 05:13:28, commit-bot: I haz the power wrote: > CQ is trying da patch. ...
4 years, 9 months ago (2016-03-15 06:22:56 UTC) #87
Srirama
@philip, does it need some more changes before sending it to CQ? I have made ...
4 years, 9 months ago (2016-03-15 07:30:18 UTC) #88
philipj_slow
https://codereview.chromium.org/1522463003/diff/380001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp File third_party/WebKit/Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1522463003/diff/380001/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp#newcode1891 third_party/WebKit/Source/core/html/HTMLMediaElement.cpp:1891: const String preloadTypeToString(WebMediaPlayer::Preload preloadType) Helpers like this should be ...
4 years, 9 months ago (2016-03-15 08:00:39 UTC) #89
philipj_slow
On 2016/03/15 07:30:18, Srirama wrote: > @philip, does it need some more changes before sending ...
4 years, 9 months ago (2016-03-15 08:01:48 UTC) #90
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1522463003/400001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1522463003/400001
4 years, 9 months ago (2016-03-15 08:45:23 UTC) #93
philipj_slow
mlamouri@ was interested in this.
4 years, 9 months ago (2016-03-15 09:30:56 UTC) #95
commit-bot: I haz the power
Committed patchset #16 (id:400001)
4 years, 9 months ago (2016-03-15 10:28:30 UTC) #97
commit-bot: I haz the power
4 years, 9 months ago (2016-03-15 10:30:05 UTC) #99
Message was sent while issue was closed.
Patchset 16 (id:??) landed as
https://crrev.com/4563c7c2c70ab5f09a017cad834d995485f75ec0
Cr-Commit-Position: refs/heads/master@{#381203}

Powered by Google App Engine
This is Rietveld 408576698