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

Issue 1214883004: Fixed the audio backgrounding bug (Closed)

Created:
5 years, 5 months ago by sebsg
Modified:
5 years, 2 months ago
CC:
chromium-reviews, creis+watch_chromium.org, posciak+watch_chromium.org, nasko+codewatch_chromium.org, jam, mcasas+watch_chromium.org, feature-media-reviews_chromium.org, darin-cc_chromium.org, wjia+watch_chromium.org, miu+watch_chromium.org, Georges Khalil
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Fixed the audio backgrounding bug. Fixed the fact that we don't background a tab that initially skipped backgrounding because audio was playing (at the moment the tab was hidden) when the audio stops. We now make calls to UpdateProcessPriority when audio starts or stops. BUG=491895 Committed: https://crrev.com/349188e9ed037b427815c9e5ad55223d043ab6fd Cr-Commit-Position: refs/heads/master@{#352421}

Patch Set 1 #

Patch Set 2 : Fixed a comment #

Total comments: 4

Patch Set 3 : Made changes as suggested by dalecurtis@chromium.org #

Total comments: 2

Patch Set 4 : Removed an unnecessary atomic operation #

Total comments: 18

Patch Set 5 : Adressed comments made by gab@chromium.org #

Patch Set 6 : Changed method names #

Patch Set 7 : Added a check to null before calling the render_process_host #

Total comments: 12

Patch Set 8 : Nits and fixes for the review #

Patch Set 9 : Comment change #

Total comments: 8

Patch Set 10 : Implemented nick's suggestion #

Total comments: 30

Patch Set 11 : review comments + tests #

Patch Set 12 : Fixed android bug #

Patch Set 13 : Rebased and fixed the tests for macosx #

Total comments: 33

Patch Set 14 : Refactored tests #

Total comments: 2

Patch Set 15 : Forced the MACOSX include #

Patch Set 16 : Added new line at eof #

Total comments: 13

Patch Set 17 : Addressed gab's comments #

Total comments: 8

Patch Set 18 : Addressed avi's comments #

Patch Set 19 : Added method to get mach port #

Total comments: 20

Patch Set 20 : Rebased #

Patch Set 21 : Addressed comments #

Patch Set 22 : Rebased #

Patch Set 23 : Refactored #

Patch Set 24 : Temporary android fix #

Total comments: 8

Patch Set 25 : Addressed comments #

Total comments: 6

Patch Set 26 : Addressed comments #

Total comments: 5

Patch Set 27 : Rebase #

Total comments: 2

Patch Set 28 : Fixed bad rebase merge #

Unified diffs Side-by-side diffs Delta from patch set Stats (+361 lines, -220 lines) Patch
M chrome/browser/renderer_host/render_process_host_chrome_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 7 chunks +160 lines, -9 lines 0 comments Download
M chrome/test/data/extensions/loop_audio.html View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -1 line 0 comments Download
M content/browser/renderer_host/media/audio_renderer_host.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 1 chunk +2 lines, -1 line 0 comments Download
M content/browser/renderer_host/media/audio_renderer_host.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 2 chunks +27 lines, -1 line 0 comments Download
M content/browser/renderer_host/render_process_host_impl.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 3 chunks +8 lines, -4 lines 0 comments Download
M content/browser/renderer_host/render_process_host_impl.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 58 chunks +157 lines, -204 lines 0 comments Download
M content/public/browser/render_process_host.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 1 chunk +3 lines, -0 lines 0 comments Download
M content/public/test/mock_render_process_host.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 1 chunk +1 line, -0 lines 0 comments Download
M content/public/test/mock_render_process_host.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 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 168 (70 generated)
sebsg
Fixed for the bug for when the music stops from a backgrounded tab. Also added ...
5 years, 5 months ago (2015-06-29 21:59:22 UTC) #2
DaleCurtis
https://codereview.chromium.org/1214883004/diff/20001/content/browser/renderer_host/media/audio_renderer_host.cc File content/browser/renderer_host/media/audio_renderer_host.cc (right): https://codereview.chromium.org/1214883004/diff/20001/content/browser/renderer_host/media/audio_renderer_host.cc#newcode656 content/browser/renderer_host/media/audio_renderer_host.cc:656: if (num_playing_streams_ == 1) { While thread safe given ...
5 years, 5 months ago (2015-06-29 22:04:16 UTC) #4
sebsg
Made changes as suggested by dalecurtis@chromium.org https://codereview.chromium.org/1214883004/diff/20001/content/browser/renderer_host/media/audio_renderer_host.cc File content/browser/renderer_host/media/audio_renderer_host.cc (right): https://codereview.chromium.org/1214883004/diff/20001/content/browser/renderer_host/media/audio_renderer_host.cc#newcode656 content/browser/renderer_host/media/audio_renderer_host.cc:656: if (num_playing_streams_ == ...
5 years, 5 months ago (2015-06-29 22:17:06 UTC) #5
DaleCurtis
https://codereview.chromium.org/1214883004/diff/40001/content/browser/renderer_host/media/audio_renderer_host.cc File content/browser/renderer_host/media/audio_renderer_host.cc (right): https://codereview.chromium.org/1214883004/diff/40001/content/browser/renderer_host/media/audio_renderer_host.cc#newcode672 content/browser/renderer_host/media/audio_renderer_host.cc:672: if (base::AtomicRefCountIsZero(&num_playing_streams_)) { You can use the result of ...
5 years, 5 months ago (2015-06-29 22:21:41 UTC) #6
sebsg
Removed an unnecessary atomic operation https://codereview.chromium.org/1214883004/diff/40001/content/browser/renderer_host/media/audio_renderer_host.cc File content/browser/renderer_host/media/audio_renderer_host.cc (right): https://codereview.chromium.org/1214883004/diff/40001/content/browser/renderer_host/media/audio_renderer_host.cc#newcode672 content/browser/renderer_host/media/audio_renderer_host.cc:672: if (base::AtomicRefCountIsZero(&num_playing_streams_)) { On ...
5 years, 5 months ago (2015-06-29 22:35:00 UTC) #7
DaleCurtis
media/ lgtm % comment changes. https://codereview.chromium.org/1214883004/diff/60001/content/browser/renderer_host/media/audio_renderer_host.cc File content/browser/renderer_host/media/audio_renderer_host.cc (right): https://codereview.chromium.org/1214883004/diff/60001/content/browser/renderer_host/media/audio_renderer_host.cc#newcode655 content/browser/renderer_host/media/audio_renderer_host.cc:655: // If it's the ...
5 years, 5 months ago (2015-06-29 22:44:23 UTC) #8
gab
Awesome work, some comments below. Also, please expand the CL description to explain more precisely ...
5 years, 5 months ago (2015-06-30 13:41:41 UTC) #9
DaleCurtis
https://codereview.chromium.org/1214883004/diff/60001/content/browser/renderer_host/media/audio_renderer_host.cc File content/browser/renderer_host/media/audio_renderer_host.cc (right): https://codereview.chromium.org/1214883004/diff/60001/content/browser/renderer_host/media/audio_renderer_host.cc#newcode663 content/browser/renderer_host/media/audio_renderer_host.cc:663: base::Unretained(render_process_host))); On 2015/06/30 13:41:40, gab wrote: > base::Unretained() here ...
5 years, 5 months ago (2015-06-30 16:34:36 UTC) #10
sebsg
Last changes without the test https://codereview.chromium.org/1214883004/diff/60001/content/browser/renderer_host/media/audio_renderer_host.cc File content/browser/renderer_host/media/audio_renderer_host.cc (right): https://codereview.chromium.org/1214883004/diff/60001/content/browser/renderer_host/media/audio_renderer_host.cc#newcode655 content/browser/renderer_host/media/audio_renderer_host.cc:655: // If it's the ...
5 years, 5 months ago (2015-07-02 12:58:09 UTC) #11
gab
lgtm % a couple comment nits. I would still like to see a regression test ...
5 years, 5 months ago (2015-07-02 13:11:54 UTC) #12
gab
In CL description: "Fixed the fact that we don't background a tab that initially skipped ...
5 years, 5 months ago (2015-07-02 14:25:34 UTC) #13
gab
One last thing: https://codereview.chromium.org/1214883004/diff/120001/content/browser/renderer_host/media/audio_renderer_host.cc File content/browser/renderer_host/media/audio_renderer_host.cc (right): https://codereview.chromium.org/1214883004/diff/120001/content/browser/renderer_host/media/audio_renderer_host.cc#newcode677 content/browser/renderer_host/media/audio_renderer_host.cc:677: if (base::AtomicRefCountIsOne(&num_playing_streams_)) { Note that this ...
5 years, 5 months ago (2015-07-06 17:24:09 UTC) #14
sebsg
@nick as OWNER of src/content/* https://codereview.chromium.org/1214883004/diff/120001/content/browser/renderer_host/media/audio_renderer_host.cc File content/browser/renderer_host/media/audio_renderer_host.cc (right): https://codereview.chromium.org/1214883004/diff/120001/content/browser/renderer_host/media/audio_renderer_host.cc#newcode675 content/browser/renderer_host/media/audio_renderer_host.cc:675: // Inform the renderer ...
5 years, 5 months ago (2015-07-06 18:24:53 UTC) #16
ncarter (slow)
https://codereview.chromium.org/1214883004/diff/160001/content/browser/renderer_host/render_process_host_impl.cc File content/browser/renderer_host/render_process_host_impl.cc (right): https://codereview.chromium.org/1214883004/diff/160001/content/browser/renderer_host/render_process_host_impl.cc#newcode1113 content/browser/renderer_host/render_process_host_impl.cc:1113: SetBackgrounded(true); I think we should fix things up so ...
5 years, 5 months ago (2015-07-06 21:53:57 UTC) #17
gab
Thanks Nick. https://codereview.chromium.org/1214883004/diff/160001/content/browser/renderer_host/render_process_host_impl.cc File content/browser/renderer_host/render_process_host_impl.cc (right): https://codereview.chromium.org/1214883004/diff/160001/content/browser/renderer_host/render_process_host_impl.cc#newcode1113 content/browser/renderer_host/render_process_host_impl.cc:1113: SetBackgrounded(true); On 2015/07/06 21:53:57, ncarter wrote: > ...
5 years, 5 months ago (2015-07-08 18:52:14 UTC) #18
ncarter (slow)
On 2015/07/08 18:52:14, gab wrote: > Thanks Nick. > > https://codereview.chromium.org/1214883004/diff/160001/content/browser/renderer_host/render_process_host_impl.cc > File content/browser/renderer_host/render_process_host_impl.cc (right): ...
5 years, 5 months ago (2015-07-17 16:08:39 UTC) #19
miu
A couple of drive-by comments/concerns: 1. Please make sure this doesn't conflict with the power ...
5 years, 5 months ago (2015-07-17 23:53:40 UTC) #20
gab
On 2015/07/17 23:53:40, miu wrote: > A couple of drive-by comments/concerns: > > 1. Please ...
5 years, 5 months ago (2015-07-21 16:11:29 UTC) #21
ncarter (slow)
On 2015/07/21 16:11:29, gab wrote: > On 2015/07/17 23:53:40, miu wrote: > > A couple ...
5 years, 5 months ago (2015-07-21 23:07:09 UTC) #22
gab
On 2015/07/21 23:07:09, ncarter wrote: > On 2015/07/21 16:11:29, gab wrote: > > On 2015/07/17 ...
5 years, 5 months ago (2015-07-22 17:36:32 UTC) #23
sebsg
Implemented Nick's suggestion. Implementing the tests now. https://codereview.chromium.org/1214883004/diff/160001/content/browser/renderer_host/render_process_host_impl.cc File content/browser/renderer_host/render_process_host_impl.cc (right): https://codereview.chromium.org/1214883004/diff/160001/content/browser/renderer_host/render_process_host_impl.cc#newcode1113 content/browser/renderer_host/render_process_host_impl.cc:1113: SetBackgrounded(true); On ...
5 years, 4 months ago (2015-08-02 16:44:23 UTC) #24
ncarter (slow)
On 2015/08/02 16:44:23, sebsg wrote: > Implemented Nick's suggestion. Implementing the tests now. > > ...
5 years, 4 months ago (2015-08-03 21:33:52 UTC) #25
gab
Looks great, a few things below, eager to see the tests :-). https://codereview.chromium.org/1214883004/diff/180001/content/browser/renderer_host/media/audio_renderer_host.cc File content/browser/renderer_host/media/audio_renderer_host.cc ...
5 years, 4 months ago (2015-08-04 19:40:24 UTC) #26
miu
lgtm % nits. FWICT, using the visible_widgets_ count mechanism should work well with tab capture ...
5 years, 4 months ago (2015-08-04 20:30:20 UTC) #27
ncarter (slow)
https://codereview.chromium.org/1214883004/diff/180001/content/browser/renderer_host/render_process_host_impl.cc File content/browser/renderer_host/render_process_host_impl.cc (right): https://codereview.chromium.org/1214883004/diff/180001/content/browser/renderer_host/render_process_host_impl.cc#newcode2257 content/browser/renderer_host/render_process_host_impl.cc:2257: } On 2015/08/04 19:40:24, gab wrote: > This is ...
5 years, 4 months ago (2015-08-04 22:23:23 UTC) #30
gab
https://codereview.chromium.org/1214883004/diff/180001/content/browser/renderer_host/render_process_host_impl.cc File content/browser/renderer_host/render_process_host_impl.cc (right): https://codereview.chromium.org/1214883004/diff/180001/content/browser/renderer_host/render_process_host_impl.cc#newcode2257 content/browser/renderer_host/render_process_host_impl.cc:2257: } On 2015/08/04 22:23:23, ncarter wrote: > On 2015/08/04 ...
5 years, 4 months ago (2015-08-06 16:35:03 UTC) #31
ncarter (slow)
https://codereview.chromium.org/1214883004/diff/180001/content/browser/renderer_host/render_process_host_impl.cc File content/browser/renderer_host/render_process_host_impl.cc (right): https://codereview.chromium.org/1214883004/diff/180001/content/browser/renderer_host/render_process_host_impl.cc#newcode2257 content/browser/renderer_host/render_process_host_impl.cc:2257: } On 2015/08/06 16:35:02, gab wrote: > On 2015/08/04 ...
5 years, 4 months ago (2015-08-06 18:16:39 UTC) #32
sebsg
https://codereview.chromium.org/1214883004/diff/180001/content/browser/renderer_host/media/audio_renderer_host.cc File content/browser/renderer_host/media/audio_renderer_host.cc (right): https://codereview.chromium.org/1214883004/diff/180001/content/browser/renderer_host/media/audio_renderer_host.cc#newcode665 content/browser/renderer_host/media/audio_renderer_host.cc:665: // Inform the renderer host when audio starts playing ...
5 years, 4 months ago (2015-08-06 21:11:47 UTC) #33
ncarter (slow)
Posting some partial feedback on the tests, because I'm nearly out of time for the ...
5 years, 4 months ago (2015-08-06 22:15:58 UTC) #34
gab
Looking good, glad we got this test together :-), some comments below. https://codereview.chromium.org/1214883004/diff/280001/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc File chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc ...
5 years, 4 months ago (2015-08-07 19:55:06 UTC) #35
gab
Also please update the CL description to reflect the latest status. Thanks, Gab
5 years, 4 months ago (2015-08-07 19:55:46 UTC) #36
sebsg
https://codereview.chromium.org/1214883004/diff/280001/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc File chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc (right): https://codereview.chromium.org/1214883004/diff/280001/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc#newcode87 chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc:87: no_audio_path = no_audio_path.Append(FILE_PATH_LITERAL("simple_page.html")); On 2015/08/07 19:55:06, gab wrote: > ...
5 years, 4 months ago (2015-08-09 21:07:34 UTC) #38
ncarter (slow)
lgtm
5 years, 4 months ago (2015-08-10 17:14:30 UTC) #39
gab
@sebsg, one comment below regarding current bot failure, let me know when you've addressed this ...
5 years, 4 months ago (2015-08-18 01:48:05 UTC) #40
sebsg
https://codereview.chromium.org/1214883004/diff/320001/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc File chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc (right): https://codereview.chromium.org/1214883004/diff/320001/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc#newcode643 chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc:643: content::ExecuteScript(audio_tab_web_content_, On 2015/08/18 01:48:05, gab wrote: > Need to ...
5 years, 4 months ago (2015-08-18 20:20:15 UTC) #41
sebsg
5 years, 4 months ago (2015-08-18 20:20:18 UTC) #42
gab
lgtm w/ a few style comments below. This CL is oh so awesome (especially the ...
5 years, 4 months ago (2015-08-18 21:05:37 UTC) #43
gab
@avi: question below for you in nick's absence. Thanks, Gab https://codereview.chromium.org/1214883004/diff/360001/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc File chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc (right): https://codereview.chromium.org/1214883004/diff/360001/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc#newcode32 ...
5 years, 4 months ago (2015-08-18 21:13:00 UTC) #45
sebsg
https://codereview.chromium.org/1214883004/diff/360001/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc File chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc (right): https://codereview.chromium.org/1214883004/diff/360001/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc#newcode235 chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc:235: class ChromeRenderProcessHostBackgroundingTest On 2015/08/18 21:05:37, gab wrote: > Add ...
5 years, 4 months ago (2015-08-18 21:28:33 UTC) #46
sebsg
5 years, 4 months ago (2015-08-18 21:28:36 UTC) #47
gab
Patch set 17 lgtm++ modulo adopting avi's recommendation for the DEPS issue in the test. ...
5 years, 4 months ago (2015-08-18 23:23:45 UTC) #48
Avi (use Gerrit)
On 2015/08/18 21:13:00, gab wrote: > 1) make a file specific rule to allow > ...
5 years, 4 months ago (2015-08-19 00:30:29 UTC) #50
sebsg
https://codereview.chromium.org/1214883004/diff/380001/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc File chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc (right): https://codereview.chromium.org/1214883004/diff/380001/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc#newcode543 chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc:543: // Sets up the browser to end off control ...
5 years, 4 months ago (2015-08-19 15:22:21 UTC) #51
Robert Sesek
On 2015/08/19 00:30:29, Avi wrote: > On 2015/08/18 21:13:00, gab wrote: > > 1) make ...
5 years, 4 months ago (2015-08-19 19:30:59 UTC) #52
gab
On 2015/08/19 19:30:59, Robert Sesek wrote: > On 2015/08/19 00:30:29, Avi wrote: > > On ...
5 years, 4 months ago (2015-08-19 19:38:11 UTC) #53
Avi (use Gerrit)
On 2015/08/19 19:38:11, gab wrote: > On 2015/08/19 19:30:59, Robert Sesek wrote: > > On ...
5 years, 4 months ago (2015-08-19 19:39:41 UTC) #54
gab
(and one last thing, please fix CL description to only contain title on first line ...
5 years, 4 months ago (2015-08-24 14:12:32 UTC) #63
gab
Review of latest 19 per offline request. Looks good, minor tweaks below. https://codereview.chromium.org/1214883004/diff/550001/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc File chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc ...
5 years, 4 months ago (2015-08-24 20:59:22 UTC) #65
Robert Sesek
https://codereview.chromium.org/1214883004/diff/550001/content/browser/renderer_host/render_process_host_impl.h File content/browser/renderer_host/render_process_host_impl.h (right): https://codereview.chromium.org/1214883004/diff/550001/content/browser/renderer_host/render_process_host_impl.h#newcode167 content/browser/renderer_host/render_process_host_impl.h:167: mach_port_t GetMachTaskPortForTesting() const override; On 2015/08/24 20:59:22, gab wrote: ...
5 years, 4 months ago (2015-08-24 21:44:48 UTC) #66
Avi (use Gerrit)
LGTM Thanks!
5 years, 4 months ago (2015-08-25 00:40:59 UTC) #67
sebsg
https://codereview.chromium.org/1214883004/diff/550001/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc File chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc (right): https://codereview.chromium.org/1214883004/diff/550001/chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc#newcode570 chrome/browser/renderer_host/render_process_host_chrome_browsertest.cc:570: // corresponding to each page. On 2015/08/24 20:59:22, gab ...
5 years, 4 months ago (2015-08-25 01:35:59 UTC) #70
gab
lgtm, thanks!!
5 years, 4 months ago (2015-08-25 02:07:56 UTC) #71
Robert Sesek
lgtm
5 years, 4 months ago (2015-08-25 14:42:47 UTC) #72
sebsg
jam@chromium.org: Please review changes in render_process_host_chrome_browsertest.cc. Thanks!
5 years, 4 months ago (2015-08-25 15:21:51 UTC) #74
jam
lgtm
5 years, 4 months ago (2015-08-25 15:35:35 UTC) #75
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1214883004/650001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1214883004/650001
5 years, 4 months ago (2015-08-25 17:37:14 UTC) #78
commit-bot: I haz the power
Try jobs failed on following builders: linux_android_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_android_rel_ng/builds/60475)
5 years, 4 months ago (2015-08-25 20:44:47 UTC) #80
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1214883004/650001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1214883004/650001
5 years, 3 months ago (2015-08-26 16:33:05 UTC) #82
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: mac_chromium_rel_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_ng/builds/104711)
5 years, 3 months ago (2015-08-26 16:47:57 UTC) #84
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1214883004/650001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1214883004/650001
5 years, 3 months ago (2015-09-10 19:31:54 UTC) #86
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_android_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_android_rel_ng/builds/67321)
5 years, 3 months ago (2015-09-10 22:35:22 UTC) #88
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1214883004/730001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1214883004/730001
5 years, 3 months ago (2015-09-21 19:14:47 UTC) #93
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios_dbg_simulator_ninja on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_ninja/builds/71847) ios_rel_device_ninja on ...
5 years, 3 months ago (2015-09-21 19:17:31 UTC) #95
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1214883004/750001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1214883004/750001
5 years, 3 months ago (2015-09-22 15:16:48 UTC) #97
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: mac_chromium_rel_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_ng/builds/116319)
5 years, 3 months ago (2015-09-22 15:38:01 UTC) #99
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1214883004/770001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1214883004/770001
5 years, 3 months ago (2015-09-22 21:36:42 UTC) #102
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios_dbg_simulator_ninja on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_ninja/builds/72438)
5 years, 3 months ago (2015-09-22 22:15:34 UTC) #104
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1214883004/790001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1214883004/790001
5 years, 3 months ago (2015-09-23 01:17:06 UTC) #108
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: mac_chromium_rel_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_ng/builds/116691)
5 years, 3 months ago (2015-09-23 02:45:19 UTC) #110
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1214883004/930001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1214883004/930001
5 years, 2 months ago (2015-09-29 02:14:05 UTC) #118
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_android_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_android_rel_ng/builds/74937)
5 years, 2 months ago (2015-09-29 06:19:58 UTC) #120
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1214883004/1120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1214883004/1120001
5 years, 2 months ago (2015-09-29 22:02:56 UTC) #131
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
5 years, 2 months ago (2015-09-29 23:16:51 UTC) #133
sebsg
After I rebased, I refactored my code a little. It seems that there is no ...
5 years, 2 months ago (2015-09-30 02:34:11 UTC) #134
gab
Latest changes lgtm. It's indeed a bug in process_android.cc if they're in a state where ...
5 years, 2 months ago (2015-09-30 13:33:31 UTC) #135
sebsg
https://codereview.chromium.org/1214883004/diff/1120001/content/browser/renderer_host/render_process_host_impl.cc File content/browser/renderer_host/render_process_host_impl.cc (left): https://codereview.chromium.org/1214883004/diff/1120001/content/browser/renderer_host/render_process_host_impl.cc#oldcode552 content/browser/renderer_host/render_process_host_impl.cc:552: if (BootstrapSandboxManager::ShouldEnable()) On 2015/09/30 13:33:31, gab wrote: > Hmm ...
5 years, 2 months ago (2015-09-30 18:26:43 UTC) #136
gab
https://codereview.chromium.org/1214883004/diff/1140001/content/browser/renderer_host/render_process_host_impl.cc File content/browser/renderer_host/render_process_host_impl.cc (right): https://codereview.chromium.org/1214883004/diff/1140001/content/browser/renderer_host/render_process_host_impl.cc#newcode549 content/browser/renderer_host/render_process_host_impl.cc:549: if (BootstrapSandboxManager::ShouldEnable()) Hmmm this is wrong, needs to be ...
5 years, 2 months ago (2015-09-30 20:05:23 UTC) #137
sebsg
https://chromiumcodereview.appspot.com/1214883004/diff/1140001/content/browser/renderer_host/render_process_host_impl.cc File content/browser/renderer_host/render_process_host_impl.cc (right): https://chromiumcodereview.appspot.com/1214883004/diff/1140001/content/browser/renderer_host/render_process_host_impl.cc#newcode549 content/browser/renderer_host/render_process_host_impl.cc:549: if (BootstrapSandboxManager::ShouldEnable()) On 2015/09/30 20:05:23, gab wrote: > Hmmm ...
5 years, 2 months ago (2015-09-30 21:34:27 UTC) #138
sebsg
5 years, 2 months ago (2015-09-30 21:34:29 UTC) #139
sebsg
5 years, 2 months ago (2015-09-30 21:34:31 UTC) #140
ncarter (slow)
https://chromiumcodereview.appspot.com/1214883004/diff/1160001/content/browser/renderer_host/render_process_host_impl.cc File content/browser/renderer_host/render_process_host_impl.cc (right): https://chromiumcodereview.appspot.com/1214883004/diff/1160001/content/browser/renderer_host/render_process_host_impl.cc#newcode2251 content/browser/renderer_host/render_process_host_impl.cc:2251: #if !defined(OS_ANDROID) As I understand it, we need an ...
5 years, 2 months ago (2015-09-30 22:05:45 UTC) #141
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1214883004/1180001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1214883004/1180001
5 years, 2 months ago (2015-10-01 02:09:20 UTC) #143
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: cast_shell_android on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/cast_shell_android/builds/60863) cast_shell_linux on ...
5 years, 2 months ago (2015-10-01 02:19:14 UTC) #145
gab
https://chromiumcodereview.appspot.com/1214883004/diff/1160001/content/browser/renderer_host/render_process_host_impl.cc File content/browser/renderer_host/render_process_host_impl.cc (right): https://chromiumcodereview.appspot.com/1214883004/diff/1160001/content/browser/renderer_host/render_process_host_impl.cc#newcode2321 content/browser/renderer_host/render_process_host_impl.cc:2321: child_process_launcher_->GetProcess().IsProcessBackgrounded(); On 2015/09/30 22:05:45, ncarter wrote: > How about ...
5 years, 2 months ago (2015-10-01 19:35:45 UTC) #146
ncarter (slow)
https://chromiumcodereview.appspot.com/1214883004/diff/1160001/content/browser/renderer_host/render_process_host_impl.cc File content/browser/renderer_host/render_process_host_impl.cc (right): https://chromiumcodereview.appspot.com/1214883004/diff/1160001/content/browser/renderer_host/render_process_host_impl.cc#newcode2321 content/browser/renderer_host/render_process_host_impl.cc:2321: child_process_launcher_->GetProcess().IsProcessBackgrounded(); On 2015/10/01 19:35:45, gab wrote: > On 2015/09/30 ...
5 years, 2 months ago (2015-10-01 21:10:51 UTC) #147
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1214883004/1180001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1214883004/1180001
5 years, 2 months ago (2015-10-02 21:14:05 UTC) #149
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios_dbg_simulator_ninja on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_ninja/builds/77028) ios_rel_device_ninja on ...
5 years, 2 months ago (2015-10-02 21:19:04 UTC) #151
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1214883004/1160001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1214883004/1160001
5 years, 2 months ago (2015-10-03 17:32:30 UTC) #154
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios_dbg_simulator_ninja on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_ninja/builds/77216) ios_rel_device_ninja on ...
5 years, 2 months ago (2015-10-03 17:34:12 UTC) #156
gab
https://chromiumcodereview.appspot.com/1214883004/diff/1160001/content/browser/renderer_host/render_process_host_impl.cc File content/browser/renderer_host/render_process_host_impl.cc (right): https://chromiumcodereview.appspot.com/1214883004/diff/1160001/content/browser/renderer_host/render_process_host_impl.cc#newcode2321 content/browser/renderer_host/render_process_host_impl.cc:2321: child_process_launcher_->GetProcess().IsProcessBackgrounded(); On 2015/10/01 21:10:51, ncarter wrote: > On 2015/10/01 ...
5 years, 2 months ago (2015-10-05 14:21:57 UTC) #157
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1214883004/1200001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1214883004/1200001
5 years, 2 months ago (2015-10-05 17:03:40 UTC) #159
ncarter (slow)
One small issue https://codereview.chromium.org/1214883004/diff/1200001/content/browser/renderer_host/render_process_host_impl.cc File content/browser/renderer_host/render_process_host_impl.cc (right): https://codereview.chromium.org/1214883004/diff/1200001/content/browser/renderer_host/render_process_host_impl.cc#newcode2303 content/browser/renderer_host/render_process_host_impl.cc:2303: #else Gab removed this code a ...
5 years, 2 months ago (2015-10-05 17:10:39 UTC) #160
sebsg
https://codereview.chromium.org/1214883004/diff/1200001/content/browser/renderer_host/render_process_host_impl.cc File content/browser/renderer_host/render_process_host_impl.cc (right): https://codereview.chromium.org/1214883004/diff/1200001/content/browser/renderer_host/render_process_host_impl.cc#newcode2303 content/browser/renderer_host/render_process_host_impl.cc:2303: #else On 2015/10/05 17:10:39, ncarter wrote: > Gab removed ...
5 years, 2 months ago (2015-10-05 18:42:40 UTC) #161
ncarter (slow)
On 2015/10/05 18:42:40, sebsg wrote: > https://codereview.chromium.org/1214883004/diff/1200001/content/browser/renderer_host/render_process_host_impl.cc > File content/browser/renderer_host/render_process_host_impl.cc (right): > > https://codereview.chromium.org/1214883004/diff/1200001/content/browser/renderer_host/render_process_host_impl.cc#newcode2303 > ...
5 years, 2 months ago (2015-10-05 18:45:58 UTC) #162
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1214883004/1220001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1214883004/1220001
5 years, 2 months ago (2015-10-05 18:48:01 UTC) #165
commit-bot: I haz the power
Committed patchset #28 (id:1220001)
5 years, 2 months ago (2015-10-05 20:57:48 UTC) #166
commit-bot: I haz the power
Patchset 28 (id:??) landed as https://crrev.com/349188e9ed037b427815c9e5ad55223d043ab6fd Cr-Commit-Position: refs/heads/master@{#352421}
5 years, 2 months ago (2015-10-05 20:59:26 UTC) #167
henrika (OOO until Aug 14)
5 years, 2 months ago (2015-10-06 07:38:27 UTC) #168
Message was sent while issue was closed.
A revert of this CL (patchset #28 id:1220001) has been created in
https://codereview.chromium.org/1383123003/ by henrika@chromium.org.

The reason for reverting is: Speculative revert since we see failing tests in
the WebRTC waterfall related to audio.

See 

https://build.chromium.org/p/chromium.webrtc/builders/Win7%20Tester/builds/21950
https://build.chromium.org/p/chromium.webrtc/builders/Mac%20Tester/builds/43969.

Powered by Google App Engine
This is Rietveld 408576698