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

Issue 1055503002: Eliminate MediaPlayer & MediaPlayerClient abstractions (Closed)

Created:
5 years, 8 months ago by Srirama
Modified:
5 years, 5 months ago
CC:
blink-reviews, blink-reviews-html_chromium.org, Rik, danakj, dglazkov+blink, Dominik Röttsches, dshwang, krit, eric.carlson_apple.com, feature-media-reviews_chromium.org, f(malita), gasubic, jbroman, Justin Novosad, pdr+graphicswatchlist_chromium.org, rwlbuis, Raymond Toy, Stephen Chennney, nessy, vcarbune.chromium, wolenetz, mlamouri (slow - plz ping), oilpan-reviews
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Target Ref:
refs/heads/master
Project:
blink
Visibility:
Public.

Description

Eliminate MediaPlayer & MediaPlayerClient abstractions This patch is to remove MediaPlayer and MediaPlayerClient interfaces completely and let HTMLMediaElement talk directly to webmediaplayer implementations by implementing the WebMediaPlayerClient interface. BUG=350571 Chromium CL: https://codereview.chromium.org/1133033003/ Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=199375

Patch Set 1 #

Total comments: 8

Patch Set 2 : Move createMediaPlayer() to FrameLoaderClient to avoid deps rule violation #

Total comments: 2

Patch Set 3 : Added separate interface for EncryptedMedia #

Total comments: 44

Patch Set 4 : Patch cleanup and review comments fix #

Total comments: 4

Patch Set 5 : added new path for createMediaPlayer #

Total comments: 6

Patch Set 6 : Fixed review comments #

Total comments: 1

Patch Set 7 : Fixed layout test failures #

Patch Set 8 : Rebase and code cleanup #

Total comments: 39

Patch Set 9 : Address comments #

Total comments: 26

Patch Set 10 : fixed review comments #

Patch Set 11 : Comments fix and Rebase #

Patch Set 12 : Fix for compile issue in win_blink_compile_dgb #

Patch Set 13 : Rebase #

Patch Set 14 : Use BLINK_PLATFORM_EXPORT for WebMediaPlayerEncryptedMediaClient class #

Patch Set 15 : Fix linking error #

Total comments: 10

Patch Set 16 : Addressed philip's comments #

Total comments: 3

Patch Set 17 : address comments #

Unified diffs Side-by-side diffs Delta from patch set Stats (+365 lines, -829 lines) Patch
M Source/core/html/HTMLMediaElement.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 13 chunks +85 lines, -37 lines 0 comments Download
M Source/core/html/HTMLMediaElement.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 42 chunks +164 lines, -76 lines 0 comments Download
M Source/core/html/HTMLVideoElement.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLVideoElement.cpp View 1 2 3 4 5 6 7 8 9 10 1 chunk +0 lines, -5 lines 0 comments Download
M Source/core/loader/EmptyClients.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/loader/EmptyClients.cpp View 1 2 3 4 5 6 7 8 9 10 2 chunks +6 lines, -0 lines 0 comments Download
M Source/core/loader/FrameLoaderClient.h View 1 2 3 4 5 6 7 8 9 10 3 chunks +4 lines, -0 lines 0 comments Download
M Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h View 1 2 3 4 5 6 7 8 9 10 5 chunks +14 lines, -12 lines 0 comments Download
M Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp View 1 2 3 4 5 6 7 8 9 10 9 chunks +34 lines, -42 lines 0 comments Download
M Source/modules/webaudio/MediaElementAudioSourceNode.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +0 lines, -1 line 0 comments Download
M Source/platform/blink_platform.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +2 lines, -2 lines 0 comments Download
A Source/platform/exported/WebMediaPlayerClient.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +13 lines, -0 lines 0 comments Download
A Source/platform/exported/WebMediaPlayerEncryptedMediaClient.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +13 lines, -0 lines 0 comments Download
D Source/platform/graphics/media/MediaPlayer.h View 1 2 3 4 5 6 7 1 chunk +0 lines, -107 lines 0 comments Download
D Source/platform/graphics/media/MediaPlayer.cpp View 1 chunk +0 lines, -48 lines 0 comments Download
M Source/web/AssertMatchingEnums.cpp View 1 2 3 4 5 6 7 8 9 10 2 chunks +0 lines, -5 lines 0 comments Download
M Source/web/FrameLoaderClientImpl.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
M Source/web/FrameLoaderClientImpl.cpp View 1 2 3 4 5 6 7 8 9 10 3 chunks +18 lines, -0 lines 0 comments Download
M Source/web/WebKit.cpp View 1 2 3 4 5 6 7 8 9 10 3 chunks +0 lines, -4 lines 0 comments Download
D Source/web/WebMediaPlayerClientImpl.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +0 lines, -160 lines 0 comments Download
D Source/web/WebMediaPlayerClientImpl.cpp View 1 2 3 4 5 6 7 8 9 10 1 chunk +0 lines, -314 lines 0 comments Download
M Source/web/WebRuntimeFeatures.cpp View 1 2 3 4 5 6 7 8 9 10 1 chunk +0 lines, -1 line 0 comments Download
M Source/web/web.gypi View 1 2 3 4 5 6 7 8 9 10 1 chunk +0 lines, -2 lines 0 comments Download
M public/platform/WebMediaPlayerClient.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +2 lines, -5 lines 0 comments Download
M public/platform/WebMediaPlayerEncryptedMediaClient.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +7 lines, -1 line 0 comments Download
M public/web/WebFrameClient.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +0 lines, -3 lines 0 comments Download

Messages

Total messages: 93 (20 generated)
Srirama
Hi Philip, can you please have a look at high level and tell me if ...
5 years, 8 months ago (2015-04-01 13:00:04 UTC) #2
Srirama
https://codereview.chromium.org/1055503002/diff/1/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1055503002/diff/1/Source/core/html/HTMLMediaElement.cpp#newcode66 Source/core/html/HTMLMediaElement.cpp:66: #include "modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h" This is violation of include_rules, so is ...
5 years, 8 months ago (2015-04-01 13:03:06 UTC) #3
philipj_slow
Sorry for the slow review, I was home sick for the past two weeks. This ...
5 years, 8 months ago (2015-04-14 08:42:55 UTC) #4
Srirama
Thanks for the quick review. I will clean up the patch by removing commented code ...
5 years, 8 months ago (2015-04-14 12:09:28 UTC) #5
Srirama
https://codereview.chromium.org/1055503002/diff/1/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1055503002/diff/1/Source/core/html/HTMLMediaElement.cpp#newcode81 Source/core/html/HTMLMediaElement.cpp:81: #include "public/web/WebFrameClient.h" Even public/web/ and web/ are excluded from ...
5 years, 8 months ago (2015-04-22 07:42:11 UTC) #6
fs
https://codereview.chromium.org/1055503002/diff/1/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1055503002/diff/1/Source/core/html/HTMLMediaElement.cpp#newcode81 Source/core/html/HTMLMediaElement.cpp:81: #include "public/web/WebFrameClient.h" On 2015/04/22 07:42:11, Srirama wrote: > Even ...
5 years, 8 months ago (2015-04-22 08:41:53 UTC) #8
Srirama
https://codereview.chromium.org/1055503002/diff/1/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1055503002/diff/1/Source/core/html/HTMLMediaElement.cpp#newcode81 Source/core/html/HTMLMediaElement.cpp:81: #include "public/web/WebFrameClient.h" On 2015/04/22 08:41:53, fs wrote: > On ...
5 years, 8 months ago (2015-04-22 09:49:06 UTC) #9
Srirama
@ddorwin: can you please have a quick look and suggest me how to separate out ...
5 years, 7 months ago (2015-04-29 13:13:39 UTC) #12
ddorwin
https://codereview.chromium.org/1055503002/diff/40001/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1055503002/diff/40001/Source/core/html/HTMLMediaElement.cpp#newcode67 Source/core/html/HTMLMediaElement.cpp:67: #include "modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h" This is not allowed. https://codereview.chromium.org/1055503002/diff/40001/Source/core/html/HTMLMediaElement.h File Source/core/html/HTMLMediaElement.h ...
5 years, 7 months ago (2015-05-01 17:09:28 UTC) #13
Srirama
1) Added a new interface WebMediaPlayerEncryptedMediaClient.h 2) Implemented it in HTMLMediaElementEncryptedMedia.cpp 3) Added a new ...
5 years, 7 months ago (2015-05-05 11:48:36 UTC) #16
philipj_slow
Some comments. I haven't gotten through all of the changes yet. https://codereview.chromium.org/1055503002/diff/100001/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (left): ...
5 years, 7 months ago (2015-05-06 15:39:33 UTC) #17
Srirama
Thanks, I assume the approach is fine to go ahead :). I will address all ...
5 years, 7 months ago (2015-05-07 06:23:59 UTC) #18
ddorwin
https://codereview.chromium.org/1055503002/diff/100001/Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp File Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp (right): https://codereview.chromium.org/1055503002/diff/100001/Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp#newcode267 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp:267: supplement = new HTMLMediaElementEncryptedMedia(); Can we pass the element ...
5 years, 7 months ago (2015-05-08 17:49:42 UTC) #19
Srirama
Going to blinkOn4. I will address all the comments once i am back.
5 years, 7 months ago (2015-05-11 07:31:25 UTC) #20
Srirama
Thanks for the review. I have cleaned up the patch and addressed all the comments ...
5 years, 7 months ago (2015-05-19 10:39:47 UTC) #24
ddorwin
https://codereview.chromium.org/1055503002/diff/180001/Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp File Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp (right): https://codereview.chromium.org/1055503002/diff/180001/Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp#newcode607 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp:607: HTMLMediaElementEncryptedMedia& thisElement = HTMLMediaElementEncryptedMedia::from(m_mediaElement); |thisElement| is just |this|. Access ...
5 years, 7 months ago (2015-05-19 17:01:50 UTC) #25
Srirama
On 2015/05/19 17:01:50, ddorwin wrote: > https://codereview.chromium.org/1055503002/diff/180001/Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp > File Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp (right): > > https://codereview.chromium.org/1055503002/diff/180001/Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp#newcode607 > ...
5 years, 7 months ago (2015-05-26 14:34:01 UTC) #26
ddorwin
Several comments in PS4's HTMLMediaElementEncryptedMedia.* were unaddressed. https://codereview.chromium.org/1055503002/diff/200001/Source/core/html/HTMLMediaElement.h File Source/core/html/HTMLMediaElement.h (right): https://codereview.chromium.org/1055503002/diff/200001/Source/core/html/HTMLMediaElement.h#newcode341 Source/core/html/HTMLMediaElement.h:341: // TODO ...
5 years, 7 months ago (2015-05-26 21:33:42 UTC) #27
Srirama
Sorry for overlooking your comments in patchset#4. I will address them in my next patchset. ...
5 years, 7 months ago (2015-05-27 17:15:48 UTC) #28
ddorwin
In order to do the multi-sided patch dance, I think you'll need to land a ...
5 years, 6 months ago (2015-05-29 05:18:40 UTC) #29
Srirama
On 2015/05/29 05:18:40, ddorwin wrote: > In order to do the multi-sided patch dance, I ...
5 years, 6 months ago (2015-05-29 12:11:32 UTC) #30
Srirama
PTAL. Addressed all the review comments from previous patchsets. After getting approval for this, i ...
5 years, 6 months ago (2015-06-09 14:24:29 UTC) #31
philipj_slow
Is there now a set of 2 or 3 CLs that cover the entire change ...
5 years, 6 months ago (2015-06-17 12:53:58 UTC) #32
Srirama
On 2015/06/17 12:53:58, philipj wrote: > Is there now a set of 2 or 3 ...
5 years, 6 months ago (2015-06-18 05:13:13 UTC) #33
Srirama
I have fixed the layout test failures. I ran all the media test cases with ...
5 years, 6 months ago (2015-06-23 12:39:55 UTC) #35
philipj_slow
Sorry for the very slow review. This looks like it's going to work out, which ...
5 years, 5 months ago (2015-07-01 13:49:19 UTC) #37
Srirama
Thanks Philip. I have addressed your comments. PTAL. https://codereview.chromium.org/1055503002/diff/280001/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1055503002/diff/280001/Source/core/html/HTMLMediaElement.cpp#newcode2254 Source/core/html/HTMLMediaElement.cpp:2254: this, ...
5 years, 5 months ago (2015-07-03 12:59:02 UTC) #38
philipj_slow
https://codereview.chromium.org/1055503002/diff/280001/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1055503002/diff/280001/Source/core/html/HTMLMediaElement.cpp#newcode3040 Source/core/html/HTMLMediaElement.cpp:3040: m_audioSourceProvider.wrap(0); On 2015/07/03 12:59:01, Srirama wrote: > On 2015/07/01 ...
5 years, 5 months ago (2015-07-06 11:07:10 UTC) #39
ddorwin
EME stuff LG. I assume this is the "final state" after the multi-sided patch dance. ...
5 years, 5 months ago (2015-07-06 20:43:01 UTC) #40
philipj_slow
https://codereview.chromium.org/1055503002/diff/300001/Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp File Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp (right): https://codereview.chromium.org/1055503002/diff/300001/Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp#newcode597 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp:597: // This is nothing but |this| element. On 2015/07/06 ...
5 years, 5 months ago (2015-07-06 20:51:17 UTC) #41
ddorwin
https://codereview.chromium.org/1055503002/diff/300001/Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp File Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp (right): https://codereview.chromium.org/1055503002/diff/300001/Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp#newcode597 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp:597: // This is nothing but |this| element. On 2015/07/06 ...
5 years, 5 months ago (2015-07-06 20:53:41 UTC) #42
Srirama
Thanks Philip and ddorwin for the review. I will address the nits while landing the ...
5 years, 5 months ago (2015-07-08 17:11:20 UTC) #43
philipj_slow
Splitting into separate CLs now and asking for final review of those sounds good.
5 years, 5 months ago (2015-07-08 20:01:34 UTC) #44
ddorwin
To simplify the review, please try to reuse the existing CLs as much as possible. ...
5 years, 5 months ago (2015-07-08 20:19:04 UTC) #45
Srirama
PTAL. https://codereview.chromium.org/1055503002/diff/280001/public/platform/WebMediaPlayerClient.h File public/platform/WebMediaPlayerClient.h (right): https://codereview.chromium.org/1055503002/diff/280001/public/platform/WebMediaPlayerClient.h#newcode79 public/platform/WebMediaPlayerClient.h:79: virtual void mediaPlayerRequestSeek(double) = 0; On 2015/07/06 11:07:10, ...
5 years, 5 months ago (2015-07-09 15:19:37 UTC) #46
Srirama
On 2015/07/08 20:19:04, ddorwin wrote: > To simplify the review, please try to reuse the ...
5 years, 5 months ago (2015-07-09 15:33:20 UTC) #47
philipj_slow
https://codereview.chromium.org/1055503002/diff/280001/public/platform/WebMediaPlayerClient.h File public/platform/WebMediaPlayerClient.h (right): https://codereview.chromium.org/1055503002/diff/280001/public/platform/WebMediaPlayerClient.h#newcode79 public/platform/WebMediaPlayerClient.h:79: virtual void mediaPlayerRequestSeek(double) = 0; On 2015/07/09 15:19:37, Srirama ...
5 years, 5 months ago (2015-07-09 15:42:34 UTC) #48
Srirama
On 2015/07/09 15:42:34, philipj wrote: > https://codereview.chromium.org/1055503002/diff/280001/public/platform/WebMediaPlayerClient.h > File public/platform/WebMediaPlayerClient.h (right): > > https://codereview.chromium.org/1055503002/diff/280001/public/platform/WebMediaPlayerClient.h#newcode79 > ...
5 years, 5 months ago (2015-07-09 16:48:09 UTC) #49
ddorwin
1 comment about private inheritance in PS9. On 2015/07/09 15:33:20, Srirama wrote: > On 2015/07/08 ...
5 years, 5 months ago (2015-07-09 18:37:42 UTC) #50
philipj_slow
https://codereview.chromium.org/1055503002/diff/300001/Source/core/html/HTMLMediaElement.h File Source/core/html/HTMLMediaElement.h (right): https://codereview.chromium.org/1055503002/diff/300001/Source/core/html/HTMLMediaElement.h#newcode69 Source/core/html/HTMLMediaElement.h:69: class CORE_EXPORT HTMLMediaElement : public HTMLElement, public WillBeHeapSupplementable<HTMLMediaElement>, public ...
5 years, 5 months ago (2015-07-09 19:50:16 UTC) #51
ddorwin
https://codereview.chromium.org/1055503002/diff/300001/Source/core/html/HTMLMediaElement.h File Source/core/html/HTMLMediaElement.h (right): https://codereview.chromium.org/1055503002/diff/300001/Source/core/html/HTMLMediaElement.h#newcode69 Source/core/html/HTMLMediaElement.h:69: class CORE_EXPORT HTMLMediaElement : public HTMLElement, public WillBeHeapSupplementable<HTMLMediaElement>, public ...
5 years, 5 months ago (2015-07-09 21:15:11 UTC) #52
philipj_slow
https://codereview.chromium.org/1055503002/diff/300001/Source/core/html/HTMLMediaElement.h File Source/core/html/HTMLMediaElement.h (right): https://codereview.chromium.org/1055503002/diff/300001/Source/core/html/HTMLMediaElement.h#newcode69 Source/core/html/HTMLMediaElement.h:69: class CORE_EXPORT HTMLMediaElement : public HTMLElement, public WillBeHeapSupplementable<HTMLMediaElement>, public ...
5 years, 5 months ago (2015-07-09 21:41:03 UTC) #53
Srirama
On 2015/07/09 21:41:03, philipj wrote: > https://codereview.chromium.org/1055503002/diff/300001/Source/core/html/HTMLMediaElement.h > File Source/core/html/HTMLMediaElement.h (right): > > https://codereview.chromium.org/1055503002/diff/300001/Source/core/html/HTMLMediaElement.h#newcode69 > ...
5 years, 5 months ago (2015-07-10 04:58:03 UTC) #54
Srirama
Rebased and addressed review comments. There seems to be an issue with win_blink_compile_dbg bot with ...
5 years, 5 months ago (2015-07-15 13:25:24 UTC) #57
philipj_slow
On 2015/07/15 13:25:24, Srirama wrote: > Rebased and addressed review comments. There seems to be ...
5 years, 5 months ago (2015-07-15 13:45:38 UTC) #58
Srirama
On 2015/07/15 13:45:38, philipj wrote: > On 2015/07/15 13:25:24, Srirama wrote: > > Rebased and ...
5 years, 5 months ago (2015-07-15 13:49:40 UTC) #59
philipj_slow
On 2015/07/15 13:49:40, Srirama wrote: > On 2015/07/15 13:45:38, philipj wrote: > > On 2015/07/15 ...
5 years, 5 months ago (2015-07-15 13:58:37 UTC) #60
Srirama
On 2015/07/15 13:58:37, philipj wrote: > On 2015/07/15 13:49:40, Srirama wrote: > > On 2015/07/15 ...
5 years, 5 months ago (2015-07-15 14:13:17 UTC) #61
Srirama
Tried with BLINK_PLATFORM_EXPORT, compiled successfully but there is a linking error. webcore_shared.HTMLMediaElement.obj : error LNK2019: ...
5 years, 5 months ago (2015-07-16 11:02:45 UTC) #64
philipj_slow
tasak@, I know you've worked a bit with these CORE_EXPORT and MODULES_EXPORT things, can you ...
5 years, 5 months ago (2015-07-16 11:44:11 UTC) #66
fs
On 2015/07/16 11:02:45, Srirama wrote: > Tried with BLINK_PLATFORM_EXPORT, compiled successfully but there is a ...
5 years, 5 months ago (2015-07-16 11:48:48 UTC) #67
Srirama
On 2015/07/16 11:48:48, fs wrote: > On 2015/07/16 11:02:45, Srirama wrote: > > Tried with ...
5 years, 5 months ago (2015-07-16 12:07:49 UTC) #68
Srirama
Thanks fs and philip, the issue is resolved now(Linux bot failure is unrelated). Hopefully it ...
5 years, 5 months ago (2015-07-16 14:59:28 UTC) #70
ddorwin
LGTM, though I didn't closely review HTMLMediaElement.*. philipj has to review and approve that anyway.
5 years, 5 months ago (2015-07-16 17:24:01 UTC) #71
Srirama
On 2015/07/16 17:24:01, ddorwin wrote: > LGTM, though I didn't closely review HTMLMediaElement.*. philipj has ...
5 years, 5 months ago (2015-07-20 15:17:18 UTC) #72
philipj_slow
I'm still not sure about the Web Audio stuff, can you take a look, rtoy@? ...
5 years, 5 months ago (2015-07-21 08:05:10 UTC) #73
Raymond Toy
lgtm for webaudio/MediaElementAudioSourceNode.cpp
5 years, 5 months ago (2015-07-21 19:46:10 UTC) #74
Srirama
On 2015/07/21 19:46:10, Raymond Toy wrote: > lgtm for webaudio/MediaElementAudioSourceNode.cpp Thanks Raymond, not sure if ...
5 years, 5 months ago (2015-07-22 03:41:58 UTC) #75
philipj_slow
On 2015/07/22 03:41:58, Srirama wrote: > On 2015/07/21 19:46:10, Raymond Toy wrote: > > lgtm ...
5 years, 5 months ago (2015-07-22 08:39:24 UTC) #76
Srirama
https://codereview.chromium.org/1055503002/diff/520001/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1055503002/diff/520001/Source/core/html/HTMLMediaElement.cpp#newcode3500 Source/core/html/HTMLMediaElement.cpp:3500: void HTMLMediaElement::createMediaPlayer() On 2015/07/21 08:05:10, philipj wrote: > This ...
5 years, 5 months ago (2015-07-22 14:42:10 UTC) #77
philipj_slow
OK, Web Audio remains the only point of doubt. Have you looked into whether both ...
5 years, 5 months ago (2015-07-22 14:54:06 UTC) #78
Srirama
On 2015/07/22 14:54:06, philipj wrote: > OK, Web Audio remains the only point of doubt. ...
5 years, 5 months ago (2015-07-22 15:04:04 UTC) #79
philipj_slow
I've compared the AudioSourceProvider bits in the removed and new code and only found one ...
5 years, 5 months ago (2015-07-22 15:14:53 UTC) #80
Srirama
On 2015/07/22 15:14:53, philipj wrote: > I've compared the AudioSourceProvider bits in the removed and ...
5 years, 5 months ago (2015-07-22 15:47:49 UTC) #81
philipj_slow
https://codereview.chromium.org/1055503002/diff/540001/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1055503002/diff/540001/Source/core/html/HTMLMediaElement.cpp#newcode3770 Source/core/html/HTMLMediaElement.cpp:3770: if (!bus) On 2015/07/22 15:14:53, philipj wrote: > In ...
5 years, 5 months ago (2015-07-23 07:25:41 UTC) #83
Srirama
https://codereview.chromium.org/1055503002/diff/540001/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1055503002/diff/540001/Source/core/html/HTMLMediaElement.cpp#newcode3770 Source/core/html/HTMLMediaElement.cpp:3770: if (!bus) On 2015/07/23 07:25:40, philipj wrote: > On ...
5 years, 5 months ago (2015-07-23 12:38:43 UTC) #84
philipj_slow
lgtm Sending to CQ, thanks for sticking with through all of the problems!
5 years, 5 months ago (2015-07-23 13:27:58 UTC) #86
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1055503002/580001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1055503002/580001
5 years, 5 months ago (2015-07-23 13:28:08 UTC) #88
commit-bot: I haz the power
Committed patchset #17 (id:580001) as https://src.chromium.org/viewvc/blink?view=rev&revision=199375
5 years, 5 months ago (2015-07-23 13:33:20 UTC) #89
Srirama
Thanks Philip and David for your patient reviews and valuable suggestions. Thanks fs@ for your ...
5 years, 5 months ago (2015-07-23 13:38:51 UTC) #90
Raymond Toy
Sorry for being slow in reviewing. The HTMLMedia stuff looks ok, but I'm not very ...
5 years, 5 months ago (2015-07-23 20:39:22 UTC) #91
DaleCurtis
Nope :)
5 years, 5 months ago (2015-07-23 21:03:39 UTC) #92
Srirama
5 years, 5 months ago (2015-07-24 05:26:39 UTC) #93
Message was sent while issue was closed.
On 2015/07/23 21:03:39, DaleCurtis wrote:
> Nope :)

@Raymond: no problem, philip had a look at it and it is just a mere movement of
code between files. So it should not be a problem.

Powered by Google App Engine
This is Rietveld 408576698