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

Issue 2121223002: AudioOutputDevice authorization timeout UMA histograms (Closed)

Created:
4 years, 5 months ago by o1ka
Modified:
4 years, 5 months ago
CC:
chromium-reviews, darin-cc_chromium.org, feature-media-reviews_chromium.org, jam, mlamouri+watch-content_chromium.org, posciak+watch_chromium.org, Steven Holte
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

AudioOutputDevice authorization timeout UMA histograms BUG=615589 Committed: https://crrev.com/f3e5a2d9967dbec76d3f6d6c8241d15ce6ee1ab7 Cr-Commit-Position: refs/heads/master@{#405092}

Patch Set 1 #

Patch Set 2 : timeout set to 2000, UMA stat added. #

Total comments: 1

Patch Set 3 : Moving authorization statistics to browser #

Total comments: 6

Patch Set 4 : 50 buckets #

Unified diffs Side-by-side diffs Delta from patch set Stats (+36 lines, -5 lines) Patch
M content/browser/renderer_host/media/audio_renderer_host.h View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
M content/browser/renderer_host/media/audio_renderer_host.cc View 1 2 3 7 chunks +25 lines, -5 lines 0 comments Download
M tools/metrics/histograms/histograms.xml View 1 2 1 chunk +9 lines, -0 lines 0 comments Download

Messages

Total messages: 40 (14 generated)
o1ka
4 years, 5 months ago (2016-07-05 15:52:26 UTC) #3
DaleCurtis
As stated via e-mail I think this is too high. We should ratchet up from ...
4 years, 5 months ago (2016-07-06 18:59:48 UTC) #4
o1ka
PTAL: Timeout set to 2000 + UMA stat added. holte@: PTAL at histogram.
4 years, 5 months ago (2016-07-07 13:31:17 UTC) #7
DaleCurtis
https://codereview.chromium.org/2121223002/diff/40001/media/audio/audio_output_device.cc File media/audio/audio_output_device.cc (right): https://codereview.chromium.org/2121223002/diff/40001/media/audio/audio_output_device.cc#newcode330 media/audio/audio_output_device.cc:330: UMA_HISTOGRAM_CUSTOM_TIMES("Media.Audio.Render.OutputDeviceAuthorizationTime", This doesn't allow us to make adjustments without ...
4 years, 5 months ago (2016-07-07 17:39:39 UTC) #8
chromium-reviews
The real status won't come back, because IPC is closed after timeout (that's why IPC_CLOSED) ...
4 years, 5 months ago (2016-07-07 21:02:51 UTC) #9
DaleCurtis
Hmm, instead of this UMA, perhaps instead we want one in AudioMessageFilter which is a ...
4 years, 5 months ago (2016-07-07 21:06:02 UTC) #10
o1ka
On 2016/07/07 21:06:02, DaleCurtis wrote: > Hmm, instead of this UMA, perhaps instead we want ...
4 years, 5 months ago (2016-07-08 11:50:45 UTC) #11
o1ka
see also https://codereview.chromium.org/2136513002
4 years, 5 months ago (2016-07-08 12:14:26 UTC) #12
DaleCurtis
Thanks for pointing that out, I didn't realize we aborted it browser side too when ...
4 years, 5 months ago (2016-07-08 17:35:54 UTC) #13
o1ka
On 2016/07/08 17:35:54, DaleCurtis wrote: > Thanks for pointing that out, I didn't realize we ...
4 years, 5 months ago (2016-07-08 17:47:30 UTC) #14
o1ka
On 2016/07/08 17:47:30, o1ka wrote: > On 2016/07/08 17:35:54, DaleCurtis wrote: > > Thanks for ...
4 years, 5 months ago (2016-07-08 18:06:01 UTC) #15
o1ka
PTAL. UMA is logged explicitly before Send() everywhere, so that if there is any new ...
4 years, 5 months ago (2016-07-11 11:18:50 UTC) #17
DaleCurtis
lgtm
4 years, 5 months ago (2016-07-11 18:48:58 UTC) #18
o1ka
Changing histogram reviewer since holte@ seems to be OOO. asvitkine@ - PTAL
4 years, 5 months ago (2016-07-11 21:16:42 UTC) #20
Alexei Svitkine (slow)
https://codereview.chromium.org/2121223002/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/2121223002/diff/60001/content/browser/renderer_host/media/audio_renderer_host.cc#newcode116 content/browser/renderer_host/media/audio_renderer_host.cc:116: base::TimeDelta::FromMilliseconds(5000), 100); Do you really need 100 buckets? We ...
4 years, 5 months ago (2016-07-11 21:22:55 UTC) #21
o1ka
PTAL: changed histogram to 50 buckets (100 ms precision) https://codereview.chromium.org/2121223002/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/2121223002/diff/60001/content/browser/renderer_host/media/audio_renderer_host.cc#newcode116 content/browser/renderer_host/media/audio_renderer_host.cc:116: ...
4 years, 5 months ago (2016-07-12 13:30:50 UTC) #22
Alexei Svitkine (slow)
lgtm https://codereview.chromium.org/2121223002/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/2121223002/diff/60001/content/browser/renderer_host/media/audio_renderer_host.cc#newcode116 content/browser/renderer_host/media/audio_renderer_host.cc:116: base::TimeDelta::FromMilliseconds(5000), 100); On 2016/07/12 13:30:50, o1ka wrote: > ...
4 years, 5 months ago (2016-07-12 14:52:52 UTC) #23
o1ka
On 2016/07/12 14:52:52, Alexei Svitkine wrote: > lgtm > > https://codereview.chromium.org/2121223002/diff/60001/content/browser/renderer_host/media/audio_renderer_host.cc > File content/browser/renderer_host/media/audio_renderer_host.cc (right): ...
4 years, 5 months ago (2016-07-12 14:55:11 UTC) #26
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2121223002/80001
4 years, 5 months ago (2016-07-12 14:55:29 UTC) #27
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_rel_ng/builds/242612) linux_chromium_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, ...
4 years, 5 months ago (2016-07-12 16:35:45 UTC) #29
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2121223002/80001
4 years, 5 months ago (2016-07-12 19:57:03 UTC) #31
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/261375)
4 years, 5 months ago (2016-07-12 22:38:29 UTC) #33
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2121223002/80001
4 years, 5 months ago (2016-07-13 07:58:02 UTC) #35
commit-bot: I haz the power
Committed patchset #4 (id:80001)
4 years, 5 months ago (2016-07-13 08:49:19 UTC) #37
commit-bot: I haz the power
CQ bit was unchecked.
4 years, 5 months ago (2016-07-13 08:49:24 UTC) #38
commit-bot: I haz the power
4 years, 5 months ago (2016-07-13 08:51:41 UTC) #40
Message was sent while issue was closed.
Patchset 4 (id:??) landed as
https://crrev.com/f3e5a2d9967dbec76d3f6d6c8241d15ce6ee1ab7
Cr-Commit-Position: refs/heads/master@{#405092}

Powered by Google App Engine
This is Rietveld 408576698