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

Issue 2291893002: Let Contraints Controll Mute/Unmute Audio Local Playback For Desktop Sharing (Closed)

Created:
4 years, 3 months ago by qiangchen
Modified:
4 years, 2 months ago
CC:
chromium-reviews, darin-cc_chromium.org, feature-media-reviews_chromium.org, jam, mcasas+watch+vc_chromium.org, miu+watch_chromium.org, posciak+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Let Contraints Controll Mute/Unmute Audio Local Playback For Desktop Sharing In this CL, we did the following things: 1. Add an entry for audio constraints of getUserMedia API, namely googDisableLocalEcho. 2. The constraint works for the case of desktop sharing. 3. If set googDisableLocalEcho = true, then we will mute the local playback of the sharing audio. Namely for full screen share we will mute the system audio, and for tab share, we will mute the corresponding tab. Vice versa. BUG=647801 Committed: https://crrev.com/f6ca1ed1a2d80ce5f22c10a2a5cda30b1c44bccd Cr-Commit-Position: refs/heads/master@{#425190}

Patch Set 1 : Remove Debug Code #

Total comments: 6

Patch Set 2 : WebContentsId TryParse (Rebased) #

Patch Set 3 : Rebase #

Total comments: 12

Patch Set 4 : Rename To DisableLocalEcho #

Total comments: 6

Patch Set 5 : Nit #

Patch Set 6 : Add a todo #

Total comments: 2

Patch Set 7 : Initialize option parameter #

Total comments: 6

Patch Set 8 : unique_ptr #

Total comments: 4

Patch Set 9 : Remove goog #

Patch Set 10 : Browser Test #

Patch Set 11 : RuntimeEnabledFlag #

Patch Set 12 : MediaStreamRequest signature change #

Patch Set 13 : Resolve Browser Test Issuex #

Total comments: 2

Patch Set 14 : Nit #

Total comments: 4

Patch Set 15 : Nit #

Patch Set 16 : Rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+295 lines, -162 lines) Patch
M android_webview/native/permission/media_access_permission_request_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/media/webrtc/desktop_capture_access_handler.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 5 chunks +12 lines, -9 lines 0 comments Download
M chrome/browser/media/webrtc/media_stream_devices_controller_browsertest.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/policy/policy_browsertest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +8 lines, -13 lines 0 comments Download
M content/browser/media/capture/web_contents_audio_input_stream.h View 1 chunk +1 line, -2 lines 0 comments Download
M content/browser/media/capture/web_contents_audio_input_stream.cc View 1 2 3 1 chunk +6 lines, -9 lines 0 comments Download
M content/browser/media/capture/web_contents_video_capture_device.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +2 lines, -1 line 0 comments Download
M content/browser/media/capture/web_contents_video_capture_device.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +8 lines, -9 lines 0 comments Download
M content/browser/media/capture/web_contents_video_capture_device_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +3 lines, -4 lines 0 comments Download
M content/browser/renderer_host/media/audio_input_renderer_host.cc View 1 2 3 4 5 6 7 8 2 chunks +2 lines, -2 lines 0 comments Download
M content/browser/renderer_host/media/media_stream_manager.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +9 lines, -0 lines 0 comments Download
M content/browser/renderer_host/media/media_stream_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 6 chunks +31 lines, -13 lines 0 comments Download
M content/browser/renderer_host/media/media_stream_ui_proxy_unittest.cc View 1 2 3 4 5 6 7 8 9 10 5 chunks +5 lines, -5 lines 0 comments Download
M content/browser/renderer_host/media/video_capture_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +2 lines, -2 lines 0 comments Download
M content/browser/webrtc/webrtc_getusermedia_browsertest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +47 lines, -0 lines 0 comments Download
M content/common/media/media_stream_messages.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M content/common/media/media_stream_options.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M content/public/browser/desktop_media_id.cc View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M content/public/browser/web_contents_media_capture_id.h View 1 2 3 4 5 2 chunks +11 lines, -16 lines 0 comments Download
M content/public/browser/web_contents_media_capture_id.cc View 1 2 3 4 5 6 2 chunks +96 lines, -58 lines 0 comments Download
M content/public/common/media_stream_request.h View 1 2 3 4 5 6 7 8 2 chunks +15 lines, -11 lines 0 comments Download
M content/public/common/media_stream_request.cc View 1 2 3 2 chunks +4 lines, -3 lines 0 comments Download
M content/renderer/media/user_media_client_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +8 lines, -0 lines 0 comments Download
M content/test/data/media/getusermedia.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +9 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +5 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/platform/exported/WebMediaConstraints.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +2 lines, -0 lines 0 comments Download
M third_party/WebKit/public/platform/WebMediaConstraints.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 114 (57 generated)
qiangchen
miu@: Can you glance this CL? Is this what we want? Thanks.
4 years, 3 months ago (2016-09-06 17:01:29 UTC) #6
miu
Took a quick glance. Looks good at a high level. I looked at this mostly ...
4 years, 3 months ago (2016-09-07 21:10:03 UTC) #7
qiangchen
Sorry, late responded. Was fixing several UI bugs. Replied. And do you have suggestions on ...
4 years, 3 months ago (2016-09-09 18:45:24 UTC) #8
qiangchen
https://codereview.chromium.org/2291893002/diff/60001/content/public/browser/web_contents_media_capture_id.h File content/public/browser/web_contents_media_capture_id.h (right): https://codereview.chromium.org/2291893002/diff/60001/content/public/browser/web_contents_media_capture_id.h#newcode64 content/public/browser/web_contents_media_capture_id.h:64: static bool ExtractOptions(const std::string& device_id, On 2016/09/07 21:10:03, miu ...
4 years, 3 months ago (2016-09-09 23:32:08 UTC) #11
miu
Looking good. Mostly small things: https://codereview.chromium.org/2291893002/diff/120001/content/browser/renderer_host/media/media_stream_manager.cc File content/browser/renderer_host/media/media_stream_manager.cc (right): https://codereview.chromium.org/2291893002/diff/120001/content/browser/renderer_host/media/media_stream_manager.cc#newcode357 content/browser/renderer_host/media/media_stream_manager.cc:357: bool mute_source; naming nit: ...
4 years, 3 months ago (2016-09-12 23:13:12 UTC) #15
qiangchen
https://codereview.chromium.org/2291893002/diff/120001/content/browser/renderer_host/media/media_stream_manager.cc File content/browser/renderer_host/media/media_stream_manager.cc (right): https://codereview.chromium.org/2291893002/diff/120001/content/browser/renderer_host/media/media_stream_manager.cc#newcode357 content/browser/renderer_host/media/media_stream_manager.cc:357: bool mute_source; On 2016/09/12 23:13:12, miu wrote: > naming ...
4 years, 3 months ago (2016-09-13 21:46:57 UTC) #16
qiangchen
brettw@ and dcheng@ can you take a look at this CL? Thanks. If you think ...
4 years, 3 months ago (2016-09-16 20:48:51 UTC) #19
miu
lgtm % nits: https://codereview.chromium.org/2291893002/diff/140001/content/public/browser/web_contents_media_capture_id.cc File content/public/browser/web_contents_media_capture_id.cc (right): https://codereview.chromium.org/2291893002/diff/140001/content/public/browser/web_contents_media_capture_id.cc#newcode16 content/public/browser/web_contents_media_capture_id.cc:16: constexpr char kMuteSourceFlag[] = "disable_local_echo=true"; nit: ...
4 years, 3 months ago (2016-09-16 21:22:48 UTC) #20
qiangchen
https://codereview.chromium.org/2291893002/diff/140001/content/public/browser/web_contents_media_capture_id.cc File content/public/browser/web_contents_media_capture_id.cc (right): https://codereview.chromium.org/2291893002/diff/140001/content/public/browser/web_contents_media_capture_id.cc#newcode16 content/public/browser/web_contents_media_capture_id.cc:16: constexpr char kMuteSourceFlag[] = "disable_local_echo=true"; On 2016/09/16 21:22:48, miu ...
4 years, 3 months ago (2016-09-16 22:02:24 UTC) #21
dcheng
https://codereview.chromium.org/2291893002/diff/140001/content/public/browser/desktop_media_id.cc File content/public/browser/desktop_media_id.cc (right): https://codereview.chromium.org/2291893002/diff/140001/content/public/browser/desktop_media_id.cc#newcode129 content/public/browser/desktop_media_id.cc:129: // window:"window_id:aura_id". It doesn't have to be done in ...
4 years, 3 months ago (2016-09-16 22:36:04 UTC) #22
qiangchen
replied. Thank you for your suggestion. https://codereview.chromium.org/2291893002/diff/140001/content/public/browser/desktop_media_id.cc File content/public/browser/desktop_media_id.cc (right): https://codereview.chromium.org/2291893002/diff/140001/content/public/browser/desktop_media_id.cc#newcode129 content/public/browser/desktop_media_id.cc:129: // window:"window_id:aura_id". On ...
4 years, 3 months ago (2016-09-16 22:45:52 UTC) #23
dcheng
On 2016/09/16 22:45:52, qiangchenC wrote: > replied. Thank you for your suggestion. > > https://codereview.chromium.org/2291893002/diff/140001/content/public/browser/desktop_media_id.cc ...
4 years, 3 months ago (2016-09-20 00:46:43 UTC) #24
qiangchen
On 2016/09/20 00:46:43, dcheng wrote: > On 2016/09/16 22:45:52, qiangchenC wrote: > > replied. Thank ...
4 years, 3 months ago (2016-09-20 17:44:50 UTC) #25
dcheng
https://codereview.chromium.org/2291893002/diff/180001/content/public/browser/web_contents_media_capture_id.cc File content/public/browser/web_contents_media_capture_id.cc (right): https://codereview.chromium.org/2291893002/diff/180001/content/public/browser/web_contents_media_capture_id.cc#newcode68 content/public/browser/web_contents_media_capture_id.cc:68: if (auto_throttling && component.compare(kEnableThrottlingFlag) == 0) Why would either ...
4 years, 3 months ago (2016-09-20 22:58:28 UTC) #26
qiangchen
set default value to option parameters. https://codereview.chromium.org/2291893002/diff/180001/content/public/browser/web_contents_media_capture_id.cc File content/public/browser/web_contents_media_capture_id.cc (right): https://codereview.chromium.org/2291893002/diff/180001/content/public/browser/web_contents_media_capture_id.cc#newcode68 content/public/browser/web_contents_media_capture_id.cc:68: if (auto_throttling && ...
4 years, 3 months ago (2016-09-20 23:25:33 UTC) #28
dcheng
LGTM. I realize this is legacy, but I would appreciate it if we could prioritize ...
4 years, 3 months ago (2016-09-20 23:34:40 UTC) #29
miu
https://codereview.chromium.org/2291893002/diff/220001/content/public/browser/web_contents_media_capture_id.h File content/public/browser/web_contents_media_capture_id.h (right): https://codereview.chromium.org/2291893002/diff/220001/content/public/browser/web_contents_media_capture_id.h#newcode47 content/public/browser/web_contents_media_capture_id.h:47: // string conversion back and forth. See crbug/648666. BTW--My ...
4 years, 3 months ago (2016-09-21 08:24:56 UTC) #30
qiangchen
Can you take a look at this CL? We want to add an audio constraint ...
4 years, 3 months ago (2016-09-21 21:15:21 UTC) #32
qiangchen
avi@: Can you take a look at the content folder of this CL? Thanks.
4 years, 3 months ago (2016-09-22 16:51:32 UTC) #35
Avi (use Gerrit)
https://codereview.chromium.org/2291893002/diff/220001/content/browser/media/capture/web_contents_video_capture_device.cc File content/browser/media/capture/web_contents_video_capture_device.cc (right): https://codereview.chromium.org/2291893002/diff/220001/content/browser/media/capture/web_contents_video_capture_device.cc#newcode963 content/browser/media/capture/web_contents_video_capture_device.cc:963: media_id.enable_auto_throttling); If you return a new object, make it ...
4 years, 3 months ago (2016-09-22 18:19:36 UTC) #36
qiangchen
Fixed the unique_ptr issue. But I am not familiar with HotWord stuff. And I found ...
4 years, 3 months ago (2016-09-22 20:40:59 UTC) #37
Avi (use Gerrit)
When I say "remove the layering violation" I don't mean remove the feature. The problem ...
4 years, 3 months ago (2016-09-22 20:44:38 UTC) #38
qiangchen
On 2016/09/22 20:44:38, Avi wrote: > When I say "remove the layering violation" I don't ...
4 years, 3 months ago (2016-09-22 22:06:25 UTC) #39
qiangchen
On 2016/09/22 22:06:25, qiangchenC wrote: > On 2016/09/22 20:44:38, Avi wrote: > > When I ...
4 years, 3 months ago (2016-09-22 22:19:41 UTC) #40
qiangchen
On 2016/09/22 20:44:38, Avi wrote: > When I say "remove the layering violation" I don't ...
4 years, 3 months ago (2016-09-23 16:04:40 UTC) #41
Avi (use Gerrit)
On 2016/09/23 16:04:40, qiangchenC wrote: > On 2016/09/22 20:44:38, Avi wrote: > > When I ...
4 years, 2 months ago (2016-09-23 18:15:25 UTC) #42
qiangchen
On 2016/09/23 18:15:25, Avi wrote: > On 2016/09/23 16:04:40, qiangchenC wrote: > > On 2016/09/22 ...
4 years, 2 months ago (2016-09-23 18:30:17 UTC) #43
Avi (use Gerrit)
But disabling local echo is a reasonable thing to have for embedders. Anyway, after talking ...
4 years, 2 months ago (2016-09-23 21:22:45 UTC) #44
qiangchen
On 2016/09/23 21:22:45, Avi wrote: > But disabling local echo is a reasonable thing to ...
4 years, 2 months ago (2016-09-23 21:47:54 UTC) #45
qiangchen
Hi, sergeyu@ and mkwst@ can you take a look at this CL? The main change ...
4 years, 2 months ago (2016-09-26 15:59:47 UTC) #46
Mike West
https://codereview.chromium.org/2291893002/diff/240001/third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp File third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp (right): https://codereview.chromium.org/2291893002/diff/240001/third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp#newcode94 third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp:94: const char kGoogDisableLocalEcho[] = "googDisableLocalEcho"; Is this web-exposed? That ...
4 years, 2 months ago (2016-09-27 08:03:41 UTC) #47
qiangchen
replied. https://codereview.chromium.org/2291893002/diff/240001/third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp File third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp (right): https://codereview.chromium.org/2291893002/diff/240001/third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp#newcode94 third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp:94: const char kGoogDisableLocalEcho[] = "googDisableLocalEcho"; On 2016/09/27 08:03:41, ...
4 years, 2 months ago (2016-09-27 16:16:47 UTC) #48
Avi (use Gerrit)
https://codereview.chromium.org/2291893002/diff/240001/third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp File third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp (right): https://codereview.chromium.org/2291893002/diff/240001/third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp#newcode94 third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp:94: const char kGoogDisableLocalEcho[] = "googDisableLocalEcho"; Waaaaaait. I see lots ...
4 years, 2 months ago (2016-09-27 16:20:34 UTC) #49
qiangchen
https://codereview.chromium.org/2291893002/diff/240001/third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp File third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp (right): https://codereview.chromium.org/2291893002/diff/240001/third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp#newcode94 third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp:94: const char kGoogDisableLocalEcho[] = "googDisableLocalEcho"; On 2016/09/27 16:20:34, Avi ...
4 years, 2 months ago (2016-09-27 16:32:50 UTC) #50
Mike West
On 2016/09/27 at 16:32:50, qiangchen wrote: > https://codereview.chromium.org/2291893002/diff/240001/third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp > File third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp (right): > > https://codereview.chromium.org/2291893002/diff/240001/third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp#newcode94 ...
4 years, 2 months ago (2016-09-27 18:02:13 UTC) #51
qiangchen
On 2016/09/27 18:02:13, Mike West (OOO until 26th) wrote: > On 2016/09/27 at 16:32:50, qiangchen ...
4 years, 2 months ago (2016-09-27 21:58:24 UTC) #52
Mike West
On 2016/09/27 at 21:58:24, qiangchen wrote: > ITI in progress now. Thank you! > For ...
4 years, 2 months ago (2016-09-28 11:25:28 UTC) #53
qiangchen
On 2016/09/28 11:25:28, Mike West (OOO until the 4th) wrote: > On 2016/09/27 at 21:58:24, ...
4 years, 2 months ago (2016-10-03 17:49:03 UTC) #56
qiangchen
On 2016/10/03 17:49:03, qiangchenC wrote: > On 2016/09/28 11:25:28, Mike West (OOO until the 4th) ...
4 years, 2 months ago (2016-10-04 22:13:50 UTC) #78
Mike West
Thanks for following up on blink-dev@. :) //third_party/WebKit LGTM. The new tests in //content/browser/webrtc look ...
4 years, 2 months ago (2016-10-05 04:11:03 UTC) #79
qiangchen
Sergeyu@ Can you take a look at chrome/browser/media/webrtc/desktop_capture_access_handler.cc This file is not covered by other ...
4 years, 2 months ago (2016-10-05 16:58:34 UTC) #82
qiangchen
boliu@ can you take a look at android_webview/native/permission/media_access_permission_request_unittest.cc? It is a trivial change due to ...
4 years, 2 months ago (2016-10-05 16:59:50 UTC) #83
qiangchen
pastarmovj@ can you take a look at chrome/browser/policy/policy_browsertest.cc? It is a trivial change due to ...
4 years, 2 months ago (2016-10-05 17:00:43 UTC) #84
boliu
rs lgtm https://codereview.chromium.org/2291893002/diff/400001/android_webview/native/permission/media_access_permission_request_unittest.cc File android_webview/native/permission/media_access_permission_request_unittest.cc (right): https://codereview.chromium.org/2291893002/diff/400001/android_webview/native/permission/media_access_permission_request_unittest.cc#newcode56 android_webview/native/permission/media_access_permission_request_unittest.cc:56: content::MEDIA_DEVICE_VIDEO_CAPTURE, false); nit: maybe add an inline ...
4 years, 2 months ago (2016-10-05 17:31:25 UTC) #85
pastarmovj
policy lgtm
4 years, 2 months ago (2016-10-05 18:07:18 UTC) #86
pastarmovj
policy lgtm
4 years, 2 months ago (2016-10-05 18:07:19 UTC) #87
qiangchen
https://codereview.chromium.org/2291893002/diff/400001/android_webview/native/permission/media_access_permission_request_unittest.cc File android_webview/native/permission/media_access_permission_request_unittest.cc (right): https://codereview.chromium.org/2291893002/diff/400001/android_webview/native/permission/media_access_permission_request_unittest.cc#newcode56 android_webview/native/permission/media_access_permission_request_unittest.cc:56: content::MEDIA_DEVICE_VIDEO_CAPTURE, false); On 2016/10/05 17:31:25, boliu wrote: > nit: ...
4 years, 2 months ago (2016-10-05 18:13:58 UTC) #88
miu
still lgtm (as of PS14)
4 years, 2 months ago (2016-10-05 18:43:23 UTC) #89
qiangchen
ping sergeyu@
4 years, 2 months ago (2016-10-07 19:43:39 UTC) #90
qiangchen
Hi, sergeyu@: Can you take a look at chrome/browser/media/webrtc/desktop_capture_access_handler.cc? That is the only file not ...
4 years, 2 months ago (2016-10-11 16:59:53 UTC) #91
Sergey Ulanov
lgtm https://codereview.chromium.org/2291893002/diff/420001/content/browser/media/capture/web_contents_video_capture_device.cc File content/browser/media/capture/web_contents_video_capture_device.cc (right): https://codereview.chromium.org/2291893002/diff/420001/content/browser/media/capture/web_contents_video_capture_device.cc#newcode961 content/browser/media/capture/web_contents_video_capture_device.cc:961: return std::unique_ptr<media::VideoCaptureDevice>( nit:: use base::MakeUnique<WebContentsVideoCaptureDevice> https://codereview.chromium.org/2291893002/diff/420001/content/renderer/media/user_media_client_impl.cc File content/renderer/media/user_media_client_impl.cc ...
4 years, 2 months ago (2016-10-12 22:21:02 UTC) #92
qiangchen
https://codereview.chromium.org/2291893002/diff/420001/content/browser/media/capture/web_contents_video_capture_device.cc File content/browser/media/capture/web_contents_video_capture_device.cc (right): https://codereview.chromium.org/2291893002/diff/420001/content/browser/media/capture/web_contents_video_capture_device.cc#newcode961 content/browser/media/capture/web_contents_video_capture_device.cc:961: return std::unique_ptr<media::VideoCaptureDevice>( On 2016/10/12 22:21:01, Sergey Ulanov wrote: > ...
4 years, 2 months ago (2016-10-12 22:49:54 UTC) #95
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/2291893002/440001
4 years, 2 months ago (2016-10-12 22:50:33 UTC) #96
commit-bot: I haz the power
Try jobs failed on following builders: ios-device on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios-device/builds/85524) ios-simulator on master.tryserver.chromium.mac (JOB_FAILED, ...
4 years, 2 months ago (2016-10-12 22:53:42 UTC) #98
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/2291893002/480001
4 years, 2 months ago (2016-10-13 21:35:00 UTC) #110
commit-bot: I haz the power
Committed patchset #16 (id:480001)
4 years, 2 months ago (2016-10-13 22:25:28 UTC) #112
commit-bot: I haz the power
4 years, 2 months ago (2016-10-13 22:29:35 UTC) #114
Message was sent while issue was closed.
Patchset 16 (id:??) landed as
https://crrev.com/f6ca1ed1a2d80ce5f22c10a2a5cda30b1c44bccd
Cr-Commit-Position: refs/heads/master@{#425190}

Powered by Google App Engine
This is Rietveld 408576698