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

Issue 16583004: Add Stubbed implementation of WebCDM* interfaces for unprefixed EME APIs. (Closed)

Created:
7 years, 6 months ago by ddorwin
Modified:
7 years, 6 months ago
CC:
chromium-reviews, joi+watch-content_chromium.org, darin-cc_chromium.org, jam, feature-media-reviews_chromium.org
Visibility:
Public.

Description

Add Stubbed implementation of WebContentDecryptionModule* interfaces for unprefixed EME APIs. BUG=224791, 250048 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=206603

Patch Set 1 #

Total comments: 28

Patch Set 2 : Renamed files and classes only #

Patch Set 3 : review feedback #

Total comments: 12

Patch Set 4 : Dropped "Renderer" #

Total comments: 11

Patch Set 5 : addressed feedback #

Patch Set 6 : Use uint8 and size_t #

Patch Set 7 : Change in platform API #

Total comments: 2

Patch Set 8 : feedback #

Patch Set 9 : rebase #

Patch Set 10 : Fix gcc build. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+145 lines, -0 lines) Patch
M content/content_renderer.gypi View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -0 lines 0 comments Download
A content/renderer/media/webcontentdecryptionmodule_impl.h View 1 2 3 4 1 chunk +32 lines, -0 lines 0 comments Download
A content/renderer/media/webcontentdecryptionmodule_impl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +99 lines, -0 lines 0 comments Download
M content/renderer/renderer_webkitplatformsupport_impl.h View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -0 lines 0 comments Download
M content/renderer/renderer_webkitplatformsupport_impl.cc View 1 2 3 4 5 6 7 8 2 chunks +9 lines, -0 lines 0 comments Download

Messages

Total messages: 21 (0 generated)
ddorwin
The corresponding Blink CL is https://codereview.chromium.org/16387015/ I need to land the public/platform files from that ...
7 years, 6 months ago (2013-06-06 23:23:25 UTC) #1
scherkus (not reviewing)
https://codereview.chromium.org/16583004/diff/1/content/renderer/media/renderer_webcdm_impl.cc File content/renderer/media/renderer_webcdm_impl.cc (right): https://codereview.chromium.org/16583004/diff/1/content/renderer/media/renderer_webcdm_impl.cc#newcode18 content/renderer/media/renderer_webcdm_impl.cc:18: // WebKit::WebCDMSession nit: ... implementation. https://codereview.chromium.org/16583004/diff/1/content/renderer/media/renderer_webcdm_impl.cc#newcode20 content/renderer/media/renderer_webcdm_impl.cc:20: virtual void ...
7 years, 6 months ago (2013-06-07 18:07:47 UTC) #2
ddorwin
PTAL. I renamed the classes per the request in https://codereview.chromium.org/16387015/. https://codereview.chromium.org/16583004/diff/1/content/renderer/media/renderer_webcdm_impl.cc File content/renderer/media/renderer_webcdm_impl.cc (right): https://codereview.chromium.org/16583004/diff/1/content/renderer/media/renderer_webcdm_impl.cc#newcode18 ...
7 years, 6 months ago (2013-06-10 22:53:01 UTC) #3
scherkus (not reviewing)
https://codereview.chromium.org/16583004/diff/15001/content/renderer/media/renderer_webcontentdecryptionmodule_impl.h File content/renderer/media/renderer_webcontentdecryptionmodule_impl.h (right): https://codereview.chromium.org/16583004/diff/15001/content/renderer/media/renderer_webcontentdecryptionmodule_impl.h#newcode13 content/renderer/media/renderer_webcontentdecryptionmodule_impl.h:13: class RendererWebContentDecryptionModuleImpl if we have the "Renderer" prefix do ...
7 years, 6 months ago (2013-06-12 00:48:44 UTC) #4
ddorwin
jamesr, please do an OWNERS review of content/renderer. Also, can you answer scherkus' comment about ...
7 years, 6 months ago (2013-06-12 20:29:06 UTC) #5
jamesr
having a prefix like 'renderer' is useful to disambiguate multiple different implementations of an interface. ...
7 years, 6 months ago (2013-06-12 20:40:49 UTC) #6
ddorwin
I removed "Renderer" and addressed the other comments except the magical numbers. On 2013/06/12 20:40:49, ...
7 years, 6 months ago (2013-06-12 21:13:00 UTC) #7
jamesr
https://codereview.chromium.org/16583004/diff/24001/content/renderer/media/webcontentdecryptionmodule_impl.cc File content/renderer/media/webcontentdecryptionmodule_impl.cc (right): https://codereview.chromium.org/16583004/diff/24001/content/renderer/media/webcontentdecryptionmodule_impl.cc#newcode16 content/renderer/media/webcontentdecryptionmodule_impl.cc:16: WebContentDecryptionModuleSessionImpl( one-argument constructors need explicit https://codereview.chromium.org/16583004/diff/24001/content/renderer/media/webcontentdecryptionmodule_impl.cc#newcode23 content/renderer/media/webcontentdecryptionmodule_impl.cc:23: const unsigned ...
7 years, 6 months ago (2013-06-12 21:18:49 UTC) #8
ddorwin
Thanks. The types are related to the Blink platform APIs. Let me know if they ...
7 years, 6 months ago (2013-06-12 21:37:22 UTC) #9
jamesr
On 2013/06/12 21:37:22, ddorwin wrote: > Thanks. The types are related to the Blink platform ...
7 years, 6 months ago (2013-06-12 21:49:00 UTC) #10
ddorwin
Thanks - good to know. I also changed https://codereview.chromium.org/16387015/.
7 years, 6 months ago (2013-06-12 22:22:03 UTC) #11
ddorwin
The platform APIs are now in https://codereview.chromium.org/16841007/, which is in the CQ. This can land ...
7 years, 6 months ago (2013-06-13 00:35:33 UTC) #12
jamesr
lgtm https://codereview.chromium.org/16583004/diff/43001/content/renderer/media/webcontentdecryptionmodule_impl.cc File content/renderer/media/webcontentdecryptionmodule_impl.cc (right): https://codereview.chromium.org/16583004/diff/43001/content/renderer/media/webcontentdecryptionmodule_impl.cc#newcode34 content/renderer/media/webcontentdecryptionmodule_impl.cc:34: DISALLOW_IMPLICIT_CONSTRUCTORS(WebContentDecryptionModuleSessionImpl); this class has a constructor (it's public, ...
7 years, 6 months ago (2013-06-13 02:04:18 UTC) #13
ddorwin
creis, OWNERS approval for content/content_renderer.gypi please. https://codereview.chromium.org/16583004/diff/43001/content/renderer/media/webcontentdecryptionmodule_impl.cc File content/renderer/media/webcontentdecryptionmodule_impl.cc (right): https://codereview.chromium.org/16583004/diff/43001/content/renderer/media/webcontentdecryptionmodule_impl.cc#newcode34 content/renderer/media/webcontentdecryptionmodule_impl.cc:34: DISALLOW_IMPLICIT_CONSTRUCTORS(WebContentDecryptionModuleSessionImpl); On 2013/06/13 ...
7 years, 6 months ago (2013-06-13 05:51:37 UTC) #14
jamesr1
On Wed, Jun 12, 2013 at 10:51 PM, <ddorwin@chromium.org> wrote: > creis, OWNERS approval for ...
7 years, 6 months ago (2013-06-13 06:00:16 UTC) #15
ddorwin
Oh, good. I had looked before rebasing when I didn't have that line yet. Now, ...
7 years, 6 months ago (2013-06-13 06:05:29 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ddorwin@chromium.org/16583004/52001
7 years, 6 months ago (2013-06-13 19:28:36 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ddorwin@chromium.org/16583004/77001
7 years, 6 months ago (2013-06-15 06:31:35 UTC) #18
commit-bot: I haz the power
Retried try job too often on win7_aura for step(s) browser_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=win7_aura&number=50558
7 years, 6 months ago (2013-06-15 09:25:59 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ddorwin@chromium.org/16583004/77001
7 years, 6 months ago (2013-06-15 17:02:12 UTC) #20
commit-bot: I haz the power
7 years, 6 months ago (2013-06-15 17:08:29 UTC) #21
Message was sent while issue was closed.
Change committed as 206603

Powered by Google App Engine
This is Rietveld 408576698