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

Issue 962793005: Adds MediaClientAndroid to support embedder/MediaDrmBridge interaction. (Closed)

Created:
5 years, 9 months ago by gunsch
Modified:
5 years, 7 months ago
CC:
avayvod+watch_chromium.org, chromium-reviews, feature-media-reviews_chromium.org, mcasas+watch_chromium.org, posciak+watch_chromium.org, wjia+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Adds MediaClientAndroid to support embedder/MediaDrmBridge interaction. This CL does a few things: * Adds a MediaDrmBridgeDelegate interface to support per DRM-scheme logic for Android in MediaDrmBridge. * Adds a MediaClientAndroid interface for embedders to provide MediaDrmBridgeDelegate implementations and key-system-UUID mappings * Removes the Java-based key-system-UUID mapping path * Embedders no longer call directly into MediaDrmBridge R=qinmin@chromium.org,xhwang@chromium.org,boliu@chromium.org,jochen@chromium.org BUG=462443 Committed: https://crrev.com/2288c539cc227ec262be28c4b684ff38527f7768 Cr-Commit-Position: refs/heads/master@{#327650}

Patch Set 1 #

Patch Set 2 : handle getKeyRequest entirely #

Patch Set 3 : compile fix (changes since m41) #

Patch Set 4 : pass MediaDrm instance to delegate #

Patch Set 5 : native API example #

Total comments: 10

Patch Set 6 : rebase #

Patch Set 7 : clean up code, implement actual Delegates for Widevine (Android) and Chromecast #

Total comments: 6

Patch Set 8 : added a comment, verified PlayreadyDrmDelegateAndroid (with some changes) #

Patch Set 9 : moved registration to ContentBrowserClient, install by UUID rather than key-system #

Patch Set 10 : separates MediaDrmDelegate from MediaDrmBridge. moves registration to BrowserCdmManager. #

Patch Set 11 : rebase #

Patch Set 12 : overhaul: creates MediaClientAndroid (browser-side client), eliminates Java-based MediaDrmBridge ke… #

Total comments: 54

Patch Set 13 : Addressed comments #

Patch Set 14 : rebase #

Total comments: 26

Patch Set 15 : rebase #

Patch Set 16 : review feedback #

Patch Set 17 : replace copy with const-ref #

Patch Set 18 : scoped_ptr --> inline WidevineCdmDelegateAndroid #

Total comments: 2

Patch Set 19 : updates MediaClientAndroid API to avoid map copy where possible #

Patch Set 20 : added components/cdm OWNERS to components/cdm.gypi (per-file) #

Total comments: 15

Patch Set 21 : address boliu@ comments, make AW string parsing safer. clang-format. #

Total comments: 2

Patch Set 22 : use value_type where possible #

Patch Set 23 : rebased #

Patch Set 24 : rename createSession to createSessionFromNative to avoid bug in FindBugs #

Unified diffs Side-by-side diffs Delta from patch set Stats (+910 lines, -228 lines) Patch
M android_webview/android_webview.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +2 lines, -0 lines 0 comments Download
M android_webview/browser/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +2 lines, -0 lines 0 comments Download
M android_webview/browser/aw_browser_main_parts.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 3 chunks +6 lines, -0 lines 0 comments Download
A android_webview/browser/aw_media_client_android.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +36 lines, -0 lines 0 comments Download
A android_webview/browser/aw_media_client_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +71 lines, -0 lines 0 comments Download
M android_webview/common/aw_resource.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -0 lines 0 comments Download
M android_webview/java/src/org/chromium/android_webview/AwBrowserProcess.java View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +0 lines, -19 lines 0 comments Download
M android_webview/java/src/org/chromium/android_webview/AwResource.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +4 lines, -3 lines 0 comments Download
M android_webview/native/aw_resource.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +11 lines, -0 lines 0 comments Download
A chrome/browser/android/chrome_media_client_android.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +27 lines, -0 lines 0 comments Download
A chrome/browser/android/chrome_media_client_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +19 lines, -0 lines 0 comments Download
M chrome/browser/chrome_browser_main_android.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/chrome_browser_main_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +8 lines, -0 lines 0 comments Download
M chrome/chrome_browser.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +2 lines, -0 lines 0 comments Download
M chromecast/browser/DEPS View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
M chromecast/browser/android/apk/src/org/chromium/chromecast/shell/CastBrowserHelper.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 3 chunks +0 lines, -8 lines 0 comments Download
M chromecast/browser/cast_browser_main_parts.cc View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +8 lines, -3 lines 0 comments Download
M chromecast/browser/cast_content_browser_client.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +0 lines, -3 lines 0 comments Download
A chromecast/browser/media/cast_media_client_android.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +41 lines, -0 lines 0 comments Download
A chromecast/browser/media/cast_media_client_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +44 lines, -0 lines 0 comments Download
M chromecast/chromecast.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 3 chunks +8 lines, -0 lines 0 comments Download
M chromecast/media/base/key_systems_common.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +12 lines, -0 lines 0 comments Download
M chromecast/media/base/key_systems_common_simple.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +8 lines, -0 lines 0 comments Download
A chromecast/media/cdm/playready_drm_delegate_android.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +34 lines, -0 lines 0 comments Download
A chromecast/media/cdm/playready_drm_delegate_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +85 lines, -0 lines 0 comments Download
M chromecast/media/media.gyp View 1 2 3 4 5 6 7 8 9 10 1 chunk +8 lines, -0 lines 0 comments Download
M components/OWNERS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +4 lines, -0 lines 0 comments Download
M components/cdm.gypi View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download
M components/cdm/browser/BUILD.gn View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download
A components/cdm/browser/widevine_drm_delegate_android.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +32 lines, -0 lines 0 comments Download
A components/cdm/browser/widevine_drm_delegate_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +163 lines, -0 lines 0 comments Download
M media/base/android/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +4 lines, -0 lines 0 comments Download
M media/base/android/java/src/org/chromium/media/MediaDrmBridge.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 13 chunks +47 lines, -24 lines 0 comments Download
A media/base/android/media_client_android.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +59 lines, -0 lines 0 comments Download
A media/base/android/media_client_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +37 lines, -0 lines 0 comments Download
M media/base/android/media_drm_bridge.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 11 chunks +44 lines, -168 lines 0 comments Download
A media/base/android/media_drm_bridge_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +46 lines, -0 lines 0 comments Download
A media/base/android/media_drm_bridge_delegate.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +27 lines, -0 lines 0 comments Download
M media/media.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 2 chunks +4 lines, -0 lines 0 comments Download

Messages

Total messages: 69 (14 generated)
gunsch
PTAL. This addresses one of the needs of Cast-on-AndroidTV for custom handling of PlayReady requests. ...
5 years, 9 months ago (2015-03-04 19:29:25 UTC) #2
ddorwin
Some high-level comments: * What entity/layer calls addDelegateForUuid()? * I know Java is closer to ...
5 years, 9 months ago (2015-03-04 21:43:21 UTC) #4
gunsch
Thanks for your thoughts. Responses inline: On 2015/03/04 21:43:21, ddorwin wrote: > Some high-level comments: ...
5 years, 9 months ago (2015-03-05 00:48:49 UTC) #5
ddorwin
qinmin, xhwang: Please review the discussion and comment.
5 years, 9 months ago (2015-03-05 22:16:16 UTC) #6
xhwang
On 2015/03/05 22:16:16, ddorwin wrote: > qinmin, xhwang: Please review the discussion and comment. My ...
5 years, 9 months ago (2015-03-05 23:13:11 UTC) #7
gunsch
On 2015/03/05 23:13:11, xhwang wrote: > On 2015/03/05 22:16:16, ddorwin wrote: > > qinmin, xhwang: ...
5 years, 9 months ago (2015-03-06 16:39:01 UTC) #8
gunsch
PTAL: I've put together an example native-side delegate class, that would handle both Chromecast's needs ...
5 years, 9 months ago (2015-03-18 21:26:47 UTC) #9
xhwang
The Delegate in native code looks good. I added some comments. For your question, can ...
5 years, 9 months ago (2015-03-23 04:59:47 UTC) #10
gunsch
Getting back to this again. Thanks for the thorough review; it was a bit of ...
5 years, 8 months ago (2015-04-09 01:36:39 UTC) #11
xhwang
General question: Will doing the work in BrowserMainParts affect the startup time? Ideally, we can ...
5 years, 8 months ago (2015-04-09 22:37:10 UTC) #12
gunsch
Per BrowserMainParts: Seeing as it's just creating a couple objects, that doesn't seem substantial---it's certainly ...
5 years, 8 months ago (2015-04-10 00:20:53 UTC) #13
gunsch
https://codereview.chromium.org/962793005/diff/120001/media/base/android/media_drm_bridge.h File media/base/android/media_drm_bridge.h (right): https://codereview.chromium.org/962793005/diff/120001/media/base/android/media_drm_bridge.h#newcode231 media/base/android/media_drm_bridge.h:231: Delegate* const delegate_; On 2015/04/09 22:37:10, xhwang wrote: > ...
5 years, 8 months ago (2015-04-10 00:21:11 UTC) #14
xhwang
On 2015/04/10 00:20:53, gunsch wrote: > Per BrowserMainParts: > > Seeing as it's just creating ...
5 years, 8 months ago (2015-04-10 16:41:05 UTC) #15
xhwang
https://codereview.chromium.org/962793005/diff/120001/media/base/android/media_drm_bridge.cc File media/base/android/media_drm_bridge.cc (right): https://codereview.chromium.org/962793005/diff/120001/media/base/android/media_drm_bridge.cc#newcode383 media/base/android/media_drm_bridge.cc:383: if (delegate_) { On 2015/04/10 00:20:53, gunsch wrote: > ...
5 years, 8 months ago (2015-04-10 16:41:13 UTC) #16
gunsch
Moved the registration to ContentBrowserClient, invoked the first time a MediaDrmBridge instance is created (static ...
5 years, 8 months ago (2015-04-11 00:18:16 UTC) #17
xhwang
Thanks for the update! This looks much better. I wonder, instead of having BrowserCdmManager to ...
5 years, 8 months ago (2015-04-13 18:43:44 UTC) #18
gunsch
On 2015/04/13 18:43:44, xhwang wrote: > Thanks for the update! This looks much better. > ...
5 years, 8 months ago (2015-04-14 22:08:19 UTC) #19
xhwang
On 2015/04/14 22:08:19, gunsch wrote: > On 2015/04/13 18:43:44, xhwang wrote: > > Thanks for ...
5 years, 8 months ago (2015-04-14 22:38:04 UTC) #20
gunsch
Alright, how about this? * MediaDrmDelegate is now its own class (became sort of mandatory ...
5 years, 8 months ago (2015-04-14 23:36:13 UTC) #21
xhwang
On 2015/04/14 23:36:13, gunsch wrote: > Alright, how about this? > > * MediaDrmDelegate is ...
5 years, 8 months ago (2015-04-15 00:05:18 UTC) #22
gunsch
On 2015/04/15 00:05:18, xhwang wrote: > On 2015/04/14 23:36:13, gunsch wrote: > > Alright, how ...
5 years, 8 months ago (2015-04-15 01:10:15 UTC) #23
xhwang
On 2015/04/15 01:10:15, gunsch wrote: > On 2015/04/15 00:05:18, xhwang wrote: > > On 2015/04/14 ...
5 years, 8 months ago (2015-04-15 04:49:35 UTC) #24
gunsch
Just getting back to this, thanks for the review thoughts so far. On 2015/04/15 04:49:35, ...
5 years, 8 months ago (2015-04-18 00:36:27 UTC) #25
gunsch
On 2015/04/18 00:36:27, gunsch wrote: > Just getting back to this, thanks for the review ...
5 years, 8 months ago (2015-04-23 00:38:58 UTC) #26
xhwang
On 2015/04/23 00:38:58, gunsch wrote: > On 2015/04/18 00:36:27, gunsch wrote: > > Just getting ...
5 years, 8 months ago (2015-04-23 04:36:46 UTC) #27
gunsch
On 2015/04/23 04:36:46, xhwang wrote: > On 2015/04/23 00:38:58, gunsch wrote: > > On 2015/04/18 ...
5 years, 8 months ago (2015-04-23 23:43:56 UTC) #28
xhwang
I love this CL. It's much cleaner and it fixed the UUID mapping hack! Thank ...
5 years, 8 months ago (2015-04-24 04:52:24 UTC) #29
gunsch
PTAL! https://codereview.chromium.org/962793005/diff/220001/android_webview/browser/aw_media_client_android.h File android_webview/browser/aw_media_client_android.h (right): https://codereview.chromium.org/962793005/diff/220001/android_webview/browser/aw_media_client_android.h#newcode30 android_webview/browser/aw_media_client_android.h:30: scoped_ptr<media::MediaDrmBridgeDelegate> widevine_delegate_; On 2015/04/24 04:52:22, xhwang wrote: > ...
5 years, 7 months ago (2015-04-27 23:44:13 UTC) #30
xhwang
Thanks! This looks pretty good. I think we are getting very close. I just have ...
5 years, 7 months ago (2015-04-28 05:25:11 UTC) #31
xhwang
https://codereview.chromium.org/962793005/diff/260001/media/base/android/media_drm_bridge.cc File media/base/android/media_drm_bridge.cc (right): https://codereview.chromium.org/962793005/diff/260001/media/base/android/media_drm_bridge.cc#newcode71 media/base/android/media_drm_bridge.cc:71: class KeySystemManager { On 2015/04/28 05:25:11, xhwang wrote: > ...
5 years, 7 months ago (2015-04-28 17:06:11 UTC) #32
gunsch
https://codereview.chromium.org/962793005/diff/260001/android_webview/browser/aw_media_client_android.h File android_webview/browser/aw_media_client_android.h (right): https://codereview.chromium.org/962793005/diff/260001/android_webview/browser/aw_media_client_android.h#newcode31 android_webview/browser/aw_media_client_android.h:31: scoped_ptr<cdm::WidevineDrmDelegateAndroid> widevine_delegate_; On 2015/04/28 05:25:11, xhwang wrote: > nit: ...
5 years, 7 months ago (2015-04-28 18:50:51 UTC) #33
xhwang
https://codereview.chromium.org/962793005/diff/260001/android_webview/browser/aw_media_client_android.h File android_webview/browser/aw_media_client_android.h (right): https://codereview.chromium.org/962793005/diff/260001/android_webview/browser/aw_media_client_android.h#newcode31 android_webview/browser/aw_media_client_android.h:31: scoped_ptr<cdm::WidevineDrmDelegateAndroid> widevine_delegate_; On 2015/04/28 18:50:51, gunsch wrote: > On ...
5 years, 7 months ago (2015-04-28 19:00:38 UTC) #34
gunsch
https://codereview.chromium.org/962793005/diff/260001/media/base/android/media_drm_bridge.cc File media/base/android/media_drm_bridge.cc (right): https://codereview.chromium.org/962793005/diff/260001/media/base/android/media_drm_bridge.cc#newcode71 media/base/android/media_drm_bridge.cc:71: class KeySystemManager { On 2015/04/28 19:00:38, xhwang wrote: > ...
5 years, 7 months ago (2015-04-28 19:56:32 UTC) #35
xhwang
On 2015/04/28 19:56:32, gunsch wrote: > https://codereview.chromium.org/962793005/diff/260001/media/base/android/media_drm_bridge.cc > File media/base/android/media_drm_bridge.cc (right): > > https://codereview.chromium.org/962793005/diff/260001/media/base/android/media_drm_bridge.cc#newcode71 > ...
5 years, 7 months ago (2015-04-28 22:34:36 UTC) #36
xhwang
5 years, 7 months ago (2015-04-28 22:35:31 UTC) #37
xhwang
https://codereview.chromium.org/962793005/diff/340001/media/base/android/media_drm_bridge.cc File media/base/android/media_drm_bridge.cc (right): https://codereview.chromium.org/962793005/diff/340001/media/base/android/media_drm_bridge.cc#newcode107 media/base/android/media_drm_bridge.cc:107: key_system_uuid_map_[mapping.first] = mapping.second; You still have to copy the ...
5 years, 7 months ago (2015-04-28 22:37:07 UTC) #38
xhwang
Thanks again for fixing this and thanks for the patience :) I just had one ...
5 years, 7 months ago (2015-04-28 22:38:31 UTC) #39
gunsch
@xhwang: thanks for all the review! Updated the MediaClientAndroid API to allow the implementer to ...
5 years, 7 months ago (2015-04-29 01:17:51 UTC) #42
xhwang
LGTM++ Thanks for the work!
5 years, 7 months ago (2015-04-29 03:14:53 UTC) #43
jochen (gone - plz use gerrit)
lgtm
5 years, 7 months ago (2015-04-29 09:53:28 UTC) #44
boliu
First comment before reading code: better CL description please? What does this actually do? Makes ...
5 years, 7 months ago (2015-04-29 18:35:15 UTC) #45
gunsch
@boliu: good point, the CL evolved a lot since the first description and the description ...
5 years, 7 months ago (2015-04-29 18:42:10 UTC) #46
boliu
Mostly minor things I think. One follow up suggestion: Looks like this paves the path ...
5 years, 7 months ago (2015-04-29 19:24:25 UTC) #47
gunsch
https://codereview.chromium.org/962793005/diff/380001/android_webview/browser/aw_browser_main_parts.cc File android_webview/browser/aw_browser_main_parts.cc (right): https://codereview.chromium.org/962793005/diff/380001/android_webview/browser/aw_browser_main_parts.cc#newcode11 android_webview/browser/aw_browser_main_parts.cc:11: #include "android_webview/common/aw_resource.h" On 2015/04/29 19:24:25, boliu wrote: > include ...
5 years, 7 months ago (2015-04-29 20:29:44 UTC) #48
boliu
lgtm % last suggestion https://codereview.chromium.org/962793005/diff/380001/android_webview/browser/aw_media_client_android.cc File android_webview/browser/aw_media_client_android.cc (right): https://codereview.chromium.org/962793005/diff/380001/android_webview/browser/aw_media_client_android.cc#newcode28 android_webview/browser/aw_media_client_android.cc:28: std::string guid(tokens[1]); On 2015/04/29 20:29:43, ...
5 years, 7 months ago (2015-04-29 23:15:44 UTC) #49
gunsch
https://codereview.chromium.org/962793005/diff/400001/android_webview/browser/aw_media_client_android.cc File android_webview/browser/aw_media_client_android.cc (right): https://codereview.chromium.org/962793005/diff/400001/android_webview/browser/aw_media_client_android.cc#newcode61 android_webview/browser/aw_media_client_android.cc:61: map->insert(std::make_pair(mapping.first, mapping.second)); On 2015/04/29 23:15:44, boliu wrote: > |mapping| ...
5 years, 7 months ago (2015-04-29 23:32:16 UTC) #50
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/962793005/420001
5 years, 7 months ago (2015-04-29 23:33:39 UTC) #53
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_compile_dbg_32_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_compile_dbg_32_ng/builds/48012) ios_dbg_simulator_ninja on ...
5 years, 7 months ago (2015-04-29 23:38:44 UTC) #55
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/962793005/440001
5 years, 7 months ago (2015-04-29 23:41:27 UTC) #58
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_clang_dbg_recipe on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/android_clang_dbg_recipe/builds/71841)
5 years, 7 months ago (2015-04-30 00:27:34 UTC) #60
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/962793005/460001
5 years, 7 months ago (2015-04-30 01:26:42 UTC) #63
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
5 years, 7 months ago (2015-04-30 02:47:59 UTC) #65
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/962793005/460001
5 years, 7 months ago (2015-04-30 03:57:45 UTC) #67
commit-bot: I haz the power
Committed patchset #24 (id:460001)
5 years, 7 months ago (2015-04-30 03:58:52 UTC) #68
commit-bot: I haz the power
5 years, 7 months ago (2015-04-30 03:59:42 UTC) #69
Message was sent while issue was closed.
Patchset 24 (id:??) landed as
https://crrev.com/2288c539cc227ec262be28c4b684ff38527f7768
Cr-Commit-Position: refs/heads/master@{#327650}

Powered by Google App Engine
This is Rietveld 408576698