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

Issue 812643005: Re-add AC3/EAC3 audio demuxing support (Closed)

Created:
5 years, 11 months ago by servolk
Modified:
4 years, 11 months ago
CC:
chromium-reviews, feature-media-reviews_chromium.org, wolenetz
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Re-add AC3/EAC3 audio demuxing support Chrome used to have EAC3/DD+ support (crbug.com/215773), but it was removed last year (crbug.com/334126). This CL partially restores the old code and adds AC3 support. This will allow AC3/EAC3 audio demuxing and can be used for AC3/EAC3 pass-through support. BUG=448878 Committed: https://crrev.com/063ce09474bc035a743aa565f87b7f506db8ff86 Cr-Commit-Position: refs/heads/master@{#368476}

Patch Set 1 #

Patch Set 2 : Fixed unit tests #

Patch Set 3 : Code cleanup #

Total comments: 11

Patch Set 4 : mime_util changes #

Patch Set 5 : Added ac3/eac3 demuxing option to media_options.gni #

Patch Set 6 : Added unit tests also for MSE mp4 parser code path (by using fragmented mp4) #

Total comments: 13

Patch Set 7 : Rebased to ToT #

Patch Set 8 : Fixes for ac3/eac3 mime types handling #

Patch Set 9 : Added browser tests for AC3/EAC3 #

Total comments: 7

Patch Set 10 : Fixed unit tests #

Total comments: 6

Patch Set 11 : Rebase to ToT #

Patch Set 12 : Allow mp4a.A5 and mp4a.A6 #

Patch Set 13 : Updated unit tests (added mp4a.A5 and mp4a.A6) #

Patch Set 14 : Use explicit define instead of global gyp flag #

Patch Set 15 : Rebase #

Patch Set 16 : Update mojo codecs (fix mojo build failures) #

Patch Set 17 : Fixed build on android #

Patch Set 18 : Fixed build flags along the lines of HEVC flags #

Patch Set 19 : fixed gn build #

Patch Set 20 : Rebase #

Patch Set 21 : Move CanPlay tests into _mp4 test case #

Total comments: 35

Patch Set 22 : cr feedback #

Patch Set 23 : rebase #

Total comments: 19

Patch Set 24 : CR feedback #

Patch Set 25 : rebase #

Total comments: 46

Patch Set 26 : fixed unit tests #

Patch Set 27 : Style/comment fixes in ffmpeg_common.cc #

Patch Set 28 : CR feedback #

Patch Set 29 : Renamed test files + minor fixes #

Patch Set 30 : rebase #

Total comments: 14

Patch Set 31 : rebase #

Patch Set 32 : use buildflag for ac3/eac3 #

Patch Set 33 : Fixed buildflag name in media_options.gni #

Patch Set 34 : cr feedback #

Patch Set 35 : rebase #

Total comments: 8

Patch Set 36 : CR feedback #

Total comments: 10

Patch Set 37 : CR feedback #

Patch Set 38 : Import //build/config/features.gni in media_options.gni #

Patch Set 39 : buildfix #

Unified diffs Side-by-side diffs Delta from patch set Stats (+413 lines, -40 lines) Patch
M content/browser/media/media_canplaytype_browsertest.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 24 25 26 27 28 29 30 31 12 chunks +140 lines, -0 lines 0 comments Download
M media/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +4 lines, -2 lines 0 comments Download
M media/base/android/demuxer_stream_player_params.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 24 1 chunk +2 lines, -0 lines 0 comments Download
M media/base/audio_decoder_config.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +3 lines, -2 lines 0 comments Download
M media/base/audio_decoder_config.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 24 25 26 27 28 29 30 31 32 33 34 1 chunk +4 lines, -0 lines 0 comments Download
M media/base/mime_util.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 24 25 26 27 28 29 30 31 32 33 34 6 chunks +33 lines, -0 lines 0 comments Download
M media/ffmpeg/ffmpeg_common.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 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 4 chunks +51 lines, -15 lines 0 comments Download
M media/filters/ffmpeg_demuxer_unittest.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 24 25 26 27 28 29 30 31 2 chunks +33 lines, -0 lines 0 comments Download
M media/filters/stream_parser_factory.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 24 25 26 27 28 29 30 31 4 chunks +43 lines, -6 lines 0 comments Download
M media/formats/mp4/es_descriptor.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +4 lines, -2 lines 0 comments Download
M media/formats/mp4/fourccs.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 1 chunk +6 lines, -0 lines 0 comments Download
M media/formats/mp4/mp4_stream_parser.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 24 25 26 27 28 29 30 31 32 33 3 chunks +36 lines, -8 lines 0 comments Download
M media/formats/mp4/mp4_stream_parser_unittest.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 24 25 26 27 28 29 30 31 2 chunks +23 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 23 24 25 26 27 28 29 30 31 32 33 34 35 36 2 chunks +6 lines, -1 line 0 comments Download
M media/media_options.gni View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 2 chunks +7 lines, -1 line 0 comments Download
M media/mojo/interfaces/media_types.mojom 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 +3 lines, -2 lines 0 comments Download
M media/mojo/services/media_type_converters.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 24 25 26 27 28 29 1 chunk +2 lines, -0 lines 0 comments Download
M media/test/data/README View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +10 lines, -1 line 0 comments Download
A + media/test/data/bear-ac3-only-frag.mp4 View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 Binary file 0 comments Download
A + media/test/data/bear-eac3-only-frag.mp4 View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 Binary file 0 comments Download
M tools/metrics/histograms/histograms.xml View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 2 chunks +3 lines, -0 lines 0 comments Download

Messages

Total messages: 69 (18 generated)
servolk
5 years, 11 months ago (2015-01-14 23:32:42 UTC) #4
servolk
5 years, 11 months ago (2015-01-14 23:34:34 UTC) #6
DaleCurtis
https://codereview.chromium.org/812643005/diff/40001/build/common.gypi File build/common.gypi (right): https://codereview.chromium.org/812643005/diff/40001/build/common.gypi#newcode1471 build/common.gypi:1471: # Set to 1 to enable AC3/EAC3 audio demuxing ...
5 years, 11 months ago (2015-01-14 23:36:33 UTC) #7
servolk
https://codereview.chromium.org/812643005/diff/40001/build/common.gypi File build/common.gypi (right): https://codereview.chromium.org/812643005/diff/40001/build/common.gypi#newcode1471 build/common.gypi:1471: # Set to 1 to enable AC3/EAC3 audio demuxing ...
5 years, 11 months ago (2015-01-14 23:44:12 UTC) #8
DaleCurtis
https://codereview.chromium.org/812643005/diff/40001/build/common.gypi File build/common.gypi (right): https://codereview.chromium.org/812643005/diff/40001/build/common.gypi#newcode1471 build/common.gypi:1471: # Set to 1 to enable AC3/EAC3 audio demuxing ...
5 years, 11 months ago (2015-01-14 23:50:07 UTC) #9
servolk
https://codereview.chromium.org/812643005/diff/40001/build/common.gypi File build/common.gypi (right): https://codereview.chromium.org/812643005/diff/40001/build/common.gypi#newcode1471 build/common.gypi:1471: # Set to 1 to enable AC3/EAC3 audio demuxing ...
5 years, 11 months ago (2015-01-15 00:06:45 UTC) #10
DaleCurtis
https://codereview.chromium.org/812643005/diff/40001/build/common.gypi File build/common.gypi (right): https://codereview.chromium.org/812643005/diff/40001/build/common.gypi#newcode1471 build/common.gypi:1471: # Set to 1 to enable AC3/EAC3 audio demuxing ...
5 years, 11 months ago (2015-01-15 01:51:01 UTC) #12
servolk
https://codereview.chromium.org/812643005/diff/40001/build/common.gypi File build/common.gypi (right): https://codereview.chromium.org/812643005/diff/40001/build/common.gypi#newcode1471 build/common.gypi:1471: # Set to 1 to enable AC3/EAC3 audio demuxing ...
5 years, 11 months ago (2015-01-15 02:37:20 UTC) #13
lcwu1
On 2015/01/15 02:37:20, servolk wrote: > https://codereview.chromium.org/812643005/diff/40001/build/common.gypi > File build/common.gypi (right): > > https://codereview.chromium.org/812643005/diff/40001/build/common.gypi#newcode1471 > ...
5 years, 11 months ago (2015-01-15 02:41:48 UTC) #14
servolk
On 2015/01/15 02:41:48, lcwu1 wrote: > On 2015/01/15 02:37:20, servolk wrote: > > https://codereview.chromium.org/812643005/diff/40001/build/common.gypi > ...
5 years, 11 months ago (2015-01-15 02:45:26 UTC) #15
lcwu1
On 2015/01/15 02:45:26, servolk wrote: > On 2015/01/15 02:41:48, lcwu1 wrote: > > On 2015/01/15 ...
5 years, 11 months ago (2015-01-15 02:57:41 UTC) #16
DaleCurtis
https://codereview.chromium.org/812643005/diff/40001/build/common.gypi File build/common.gypi (right): https://codereview.chromium.org/812643005/diff/40001/build/common.gypi#newcode1471 build/common.gypi:1471: # Set to 1 to enable AC3/EAC3 audio demuxing ...
5 years, 11 months ago (2015-01-15 17:56:13 UTC) #17
Ryan Sleevi
On 2015/01/15 17:56:13, DaleCurtis wrote: > +rsleevi,wolenetz who are more familiar with the historical context ...
5 years, 11 months ago (2015-01-16 02:40:19 UTC) #18
Ryan Sleevi
On 2015/01/16 02:40:19, Ryan Sleevi wrote: > On 2015/01/15 17:56:13, DaleCurtis wrote: > > +rsleevi,wolenetz ...
5 years, 11 months ago (2015-01-16 02:43:06 UTC) #19
servolk
On 2015/01/16 02:40:19, Ryan Sleevi wrote: > On 2015/01/15 17:56:13, DaleCurtis wrote: > > +rsleevi,wolenetz ...
5 years, 11 months ago (2015-01-16 18:10:43 UTC) #20
ddorwin
https://codereview.chromium.org/812643005/diff/100001/net/base/mime_util.cc File net/base/mime_util.cc (right): https://codereview.chromium.org/812643005/diff/100001/net/base/mime_util.cc#newcode556 net/base/mime_util.cc:556: "ac-3,ec-3,mp4a.a5,mp4a.a6," You only need one each for AC3 and ...
5 years, 10 months ago (2015-02-26 20:49:32 UTC) #22
servolk
https://codereview.chromium.org/812643005/diff/100001/net/base/mime_util.cc File net/base/mime_util.cc (right): https://codereview.chromium.org/812643005/diff/100001/net/base/mime_util.cc#newcode556 net/base/mime_util.cc:556: "ac-3,ec-3,mp4a.a5,mp4a.a6," On 2015/02/26 20:49:32, ddorwin wrote: > You only ...
5 years, 10 months ago (2015-02-26 22:00:59 UTC) #23
ddorwin
https://codereview.chromium.org/812643005/diff/100001/net/base/mime_util.cc File net/base/mime_util.cc (right): https://codereview.chromium.org/812643005/diff/100001/net/base/mime_util.cc#newcode556 net/base/mime_util.cc:556: "ac-3,ec-3,mp4a.a5,mp4a.a6," On 2015/02/26 22:00:59, servolk wrote: > On 2015/02/26 ...
5 years, 10 months ago (2015-02-26 22:06:18 UTC) #24
servolk
https://codereview.chromium.org/812643005/diff/100001/net/base/mime_util.cc File net/base/mime_util.cc (right): https://codereview.chromium.org/812643005/diff/100001/net/base/mime_util.cc#newcode556 net/base/mime_util.cc:556: "ac-3,ec-3,mp4a.a5,mp4a.a6," On 2015/02/26 22:06:18, ddorwin wrote: > On 2015/02/26 ...
5 years, 10 months ago (2015-02-26 22:29:21 UTC) #25
ddorwin
https://codereview.chromium.org/812643005/diff/100001/net/base/mime_util.cc File net/base/mime_util.cc (right): https://codereview.chromium.org/812643005/diff/100001/net/base/mime_util.cc#newcode556 net/base/mime_util.cc:556: "ac-3,ec-3,mp4a.a5,mp4a.a6," On 2015/02/26 22:29:20, servolk wrote: > On 2015/02/26 ...
5 years, 10 months ago (2015-02-26 22:34:15 UTC) #26
servolk
https://codereview.chromium.org/812643005/diff/100001/net/base/mime_util.cc File net/base/mime_util.cc (right): https://codereview.chromium.org/812643005/diff/100001/net/base/mime_util.cc#newcode556 net/base/mime_util.cc:556: "ac-3,ec-3,mp4a.a5,mp4a.a6," On 2015/02/26 22:34:15, ddorwin wrote: > On 2015/02/26 ...
5 years, 10 months ago (2015-02-26 22:43:54 UTC) #27
servolk
Added unit tests and various fixes to address earlier feedback. Note that one thing that ...
5 years, 10 months ago (2015-02-27 01:21:14 UTC) #28
ddorwin
https://codereview.chromium.org/812643005/diff/160001/content/browser/media/media_canplaytype_browsertest.cc File content/browser/media/media_canplaytype_browsertest.cc (right): https://codereview.chromium.org/812643005/diff/160001/content/browser/media/media_canplaytype_browsertest.cc#newcode1044 content/browser/media/media_canplaytype_browsertest.cc:1044: #if defined(ENABLE_AC3_EAC3_DEMUXING) We should always run the tests, but ...
5 years, 10 months ago (2015-02-27 01:44:13 UTC) #29
servolk
https://codereview.chromium.org/812643005/diff/160001/content/browser/media/media_canplaytype_browsertest.cc File content/browser/media/media_canplaytype_browsertest.cc (right): https://codereview.chromium.org/812643005/diff/160001/content/browser/media/media_canplaytype_browsertest.cc#newcode1044 content/browser/media/media_canplaytype_browsertest.cc:1044: #if defined(ENABLE_AC3_EAC3_DEMUXING) On 2015/02/27 01:44:13, ddorwin wrote: > We ...
5 years, 10 months ago (2015-02-27 02:19:08 UTC) #30
ddorwin
https://codereview.chromium.org/812643005/diff/160001/content/browser/media/media_canplaytype_browsertest.cc File content/browser/media/media_canplaytype_browsertest.cc (right): https://codereview.chromium.org/812643005/diff/160001/content/browser/media/media_canplaytype_browsertest.cc#newcode1055 content/browser/media/media_canplaytype_browsertest.cc:1055: EXPECT_EQ(kPropProbably, CanPlay("'video/mp4; codecs=\"mp4a.a6\"'")); On 2015/02/27 02:19:07, servolk wrote: > ...
5 years, 9 months ago (2015-03-02 19:35:39 UTC) #31
servolk
On 2015/03/02 19:35:39, ddorwin wrote: > https://codereview.chromium.org/812643005/diff/160001/content/browser/media/media_canplaytype_browsertest.cc > File content/browser/media/media_canplaytype_browsertest.cc (right): > > https://codereview.chromium.org/812643005/diff/160001/content/browser/media/media_canplaytype_browsertest.cc#newcode1055 > ...
5 years ago (2015-11-24 19:39:14 UTC) #33
servolk
https://codereview.chromium.org/812643005/diff/180001/content/browser/media/media_canplaytype_browsertest.cc File content/browser/media/media_canplaytype_browsertest.cc (right): https://codereview.chromium.org/812643005/diff/180001/content/browser/media/media_canplaytype_browsertest.cc#newcode177 content/browser/media/media_canplaytype_browsertest.cc:177: EXPECT_EQ(kNot, CanPlay("'" + mime + "; codecs=\"ac-4\"'")); On 2015/03/02 ...
5 years ago (2015-11-24 19:45:17 UTC) #34
ddorwin
I reviewed through media/base/mime_util.cc. Please have someone else review the details. Mostly minor comments. https://codereview.chromium.org/812643005/diff/400001/content/browser/media/media_canplaytype_browsertest.cc ...
5 years ago (2015-11-25 22:24:08 UTC) #35
servolk
https://codereview.chromium.org/812643005/diff/400001/content/browser/media/media_canplaytype_browsertest.cc File content/browser/media/media_canplaytype_browsertest.cc (right): https://codereview.chromium.org/812643005/diff/400001/content/browser/media/media_canplaytype_browsertest.cc#newcode226 content/browser/media/media_canplaytype_browsertest.cc:226: EXPECT_EQ(kNot, CanPlay("'" + mime + "; codecs=\"ac-\"'")); On 2015/11/25 ...
5 years ago (2015-12-03 00:56:15 UTC) #37
ddorwin
See https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/5c4ySpPsV14 for the new way to do build flags. https://codereview.chromium.org/812643005/diff/440001/media/base/audio_decoder_config.cc File media/base/audio_decoder_config.cc (right): https://codereview.chromium.org/812643005/diff/440001/media/base/audio_decoder_config.cc#newcode119 ...
5 years ago (2015-12-03 23:46:53 UTC) #38
servolk
I've created a separate CL to try out converting an existing global flag (enable_mpeg2ts) into ...
5 years ago (2015-12-21 17:50:57 UTC) #39
ddorwin
Through mime_util.cc LG but pending the build flag change. I also reviewed the rest of ...
4 years, 11 months ago (2016-01-04 23:22:18 UTC) #40
ddorwin
P.S. Please don't forget about the four or so items in PS 23 comments to ...
4 years, 11 months ago (2016-01-04 23:23:08 UTC) #41
servolk
https://codereview.chromium.org/812643005/diff/440001/media/base/audio_decoder_config.cc File media/base/audio_decoder_config.cc (right): https://codereview.chromium.org/812643005/diff/440001/media/base/audio_decoder_config.cc#newcode119 media/base/audio_decoder_config.cc:119: case kCodecPCM_ALAW: On 2015/12/21 17:50:57, servolk wrote: > On ...
4 years, 11 months ago (2016-01-07 02:30:04 UTC) #42
ddorwin
LG. Are you going to convert the build flags before landing? https://codereview.chromium.org/812643005/diff/480001/media/filters/stream_parser_factory.cc File media/filters/stream_parser_factory.cc (right): ...
4 years, 11 months ago (2016-01-07 19:12:43 UTC) #43
servolk
Conversion to buildflag is done in patchset 32 (I had to wait before the mpeg2ts ...
4 years, 11 months ago (2016-01-07 21:17:36 UTC) #44
servolk
https://codereview.chromium.org/812643005/diff/480001/media/formats/mp4/mp4_stream_parser_unittest.cc File media/formats/mp4/mp4_stream_parser_unittest.cc (right): https://codereview.chromium.org/812643005/diff/480001/media/formats/mp4/mp4_stream_parser_unittest.cc#newcode341 media/formats/mp4/mp4_stream_parser_unittest.cc:341: #if defined(ENABLE_AC3_EAC3_AUDIO_DEMUXING) On 2016/01/07 21:17:36, servolk wrote: > On ...
4 years, 11 months ago (2016-01-08 00:53:34 UTC) #45
ddorwin
LGTM with a few comments. Thanks. https://codereview.chromium.org/812643005/diff/680001/media/ffmpeg/ffmpeg_common.cc File media/ffmpeg/ffmpeg_common.cc (right): https://codereview.chromium.org/812643005/diff/680001/media/ffmpeg/ffmpeg_common.cc#newcode374 media/ffmpeg/ffmpeg_common.cc:374: if (codec != ...
4 years, 11 months ago (2016-01-08 18:11:02 UTC) #46
servolk
https://codereview.chromium.org/812643005/diff/680001/media/ffmpeg/ffmpeg_common.cc File media/ffmpeg/ffmpeg_common.cc (right): https://codereview.chromium.org/812643005/diff/680001/media/ffmpeg/ffmpeg_common.cc#newcode374 media/ffmpeg/ffmpeg_common.cc:374: if (codec != kCodecOpus && codec != kCodecAC3 && ...
4 years, 11 months ago (2016-01-08 20:02:33 UTC) #47
servolk
On 2016/01/08 20:02:33, servolk wrote: > https://codereview.chromium.org/812643005/diff/680001/media/ffmpeg/ffmpeg_common.cc > File media/ffmpeg/ffmpeg_common.cc (right): > > https://codereview.chromium.org/812643005/diff/680001/media/ffmpeg/ffmpeg_common.cc#newcode374 > ...
4 years, 11 months ago (2016-01-08 20:06:43 UTC) #49
Alexei Svitkine (slow)
histograms.xml lgtm - didn't look elsewhere
4 years, 11 months ago (2016-01-08 20:11:37 UTC) #50
ddorwin
Thanks. https://codereview.chromium.org/812643005/diff/700001/media/ffmpeg/ffmpeg_common.cc File media/ffmpeg/ffmpeg_common.cc (right): https://codereview.chromium.org/812643005/diff/700001/media/ffmpeg/ffmpeg_common.cc#newcode319 media/ffmpeg/ffmpeg_common.cc:319: if (codec == kCodecOpus) { I think a ...
4 years, 11 months ago (2016-01-08 20:15:42 UTC) #51
servolk
https://codereview.chromium.org/812643005/diff/700001/media/ffmpeg/ffmpeg_common.cc File media/ffmpeg/ffmpeg_common.cc (right): https://codereview.chromium.org/812643005/diff/700001/media/ffmpeg/ffmpeg_common.cc#newcode319 media/ffmpeg/ffmpeg_common.cc:319: if (codec == kCodecOpus) { On 2016/01/08 20:15:42, ddorwin ...
4 years, 11 months ago (2016-01-08 21:55:48 UTC) #52
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/812643005/720001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/812643005/720001
4 years, 11 months ago (2016-01-08 21:58:19 UTC) #54
ddorwin
LGTM. Thank you.
4 years, 11 months ago (2016-01-08 22:00:15 UTC) #55
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: mac_chromium_gn_rel on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_gn_rel/builds/50298)
4 years, 11 months ago (2016-01-08 22:13:37 UTC) #57
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/812643005/740001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/812643005/740001
4 years, 11 months ago (2016-01-08 22:24:52 UTC) #60
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_gn_rel on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_gn_rel/builds/50330)
4 years, 11 months ago (2016-01-08 22:44:02 UTC) #62
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/812643005/760001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/812643005/760001
4 years, 11 months ago (2016-01-08 22:51:06 UTC) #65
commit-bot: I haz the power
Committed patchset #39 (id:760001)
4 years, 11 months ago (2016-01-09 00:40:00 UTC) #67
commit-bot: I haz the power
4 years, 11 months ago (2016-01-09 00:40:51 UTC) #69
Message was sent while issue was closed.
Patchset 39 (id:??) landed as
https://crrev.com/063ce09474bc035a743aa565f87b7f506db8ff86
Cr-Commit-Position: refs/heads/master@{#368476}

Powered by Google App Engine
This is Rietveld 408576698