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

Issue 312803002: Android media: VideoFrame should not store so many sync points. (Closed)

Created:
6 years, 6 months ago by dshwang
Modified:
6 years, 5 months ago
Reviewers:
danakj, xhwang, no sievers, nasko
CC:
chromium-reviews, avayvod+watch_chromium.org, jam, mcasas+watch_chromium.org, feature-media-reviews_chromium.org, darin-cc_chromium.org, wjia+watch_chromium.org, piman
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Visibility:
Public.

Description

Android media: VideoFrame should not store so many sync points. VideoFrame based on StreamTexture is reused on many frames. However, clients (e.g. compositor, WebGL) inserts a sync point every frame. So VideoFrame on Android can keep several mega byte sync points unnecessarily. This CL makes VideoFrame keep only one sync point. When a client set new sync point to VideoFrame and VideoFrame already keeps the sync point of another client, VideoFrame waits the previous sync point before inserting a new sync point. A client must provide a VideoFrame::SyncPointProvider so that VideoFrame can insert or wait a sync point. BUG=350925 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=284658

Patch Set 1 #

Total comments: 2

Patch Set 2 : Make VideoFrame keep only one sync point per client #

Total comments: 5

Patch Set 3 : Make VideoFrame keep one sync point and clients wait previous sync point. #

Patch Set 4 : Address danakj@'s concern #

Total comments: 22

Patch Set 5 : Use WeakPtr and Correct video_capture_controller.cc #

Total comments: 5

Patch Set 6 : Mark OVERRIDE to fix build error #

Total comments: 1

Patch Set 7 : Replace _GT with _NE #

Patch Set 8 : Fix android build using ImageTransportFactoryAndroid #

Patch Set 9 : Make content_unittests pass on Android #

Total comments: 4

Patch Set 10 : NoImageTransportFactoryAndroid is only complied into test targets. #

Patch Set 11 : make it easy to use NoImageTransportFactoryAndroid #

Patch Set 12 : android unittests build fix #

Total comments: 21

Patch Set 13 : address reviewers' comments #

Total comments: 10

Patch Set 14 : Address nits #

Total comments: 1

Patch Set 15 : Rebase to ToT, and address xhwang's nits #

Patch Set 16 : Rebase to ToT. ITFA::InitializeForUnitTests takes scoped_ptr like ITF::InitializeForUnitTests #

Patch Set 17 : Fix ios build #

Unified diffs Side-by-side diffs Delta from patch set Stats (+368 lines, -129 lines) Patch
M cc/resources/video_resource_updater.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +4 lines, -0 lines 0 comments Download
M cc/resources/video_resource_updater.cc View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +35 lines, -5 lines 0 comments Download
M content/browser/media/capture/desktop_capture_device_aura.cc View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +3 lines, -11 lines 0 comments Download
M content/browser/renderer_host/image_transport_factory_android.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +8 lines, -1 line 0 comments Download
M content/browser/renderer_host/image_transport_factory_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +14 lines, -0 lines 0 comments Download
M content/browser/renderer_host/media/video_capture_controller.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M content/browser/renderer_host/media/video_capture_controller.cc View 1 2 3 4 5 6 7 8 9 10 11 12 5 chunks +45 lines, -7 lines 0 comments Download
M content/browser/renderer_host/media/video_capture_controller_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 8 chunks +46 lines, -21 lines 0 comments Download
M content/browser/renderer_host/media/video_capture_host.h View 1 2 1 chunk +1 line, -3 lines 0 comments Download
M content/browser/renderer_host/media/video_capture_host.cc View 1 2 2 chunks +4 lines, -5 lines 0 comments Download
M content/browser/renderer_host/media/video_capture_host_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +3 lines, -5 lines 0 comments Download
A content/browser/renderer_host/test/no_transport_image_transport_factory_android.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +43 lines, -0 lines 0 comments Download
A content/browser/renderer_host/test/no_transport_image_transport_factory_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +37 lines, -0 lines 0 comments Download
M content/common/media/video_capture_messages.h View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M content/content_tests.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 3 chunks +3 lines, -1 line 0 comments Download
M content/renderer/media/android/webmediaplayer_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +23 lines, -4 lines 0 comments Download
M content/renderer/media/rtc_video_decoder.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M content/renderer/media/rtc_video_decoder.cc View 1 2 1 chunk +2 lines, -4 lines 0 comments Download
M content/renderer/media/video_capture_impl.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M content/renderer/media/video_capture_impl.cc View 1 2 4 chunks +5 lines, -7 lines 0 comments Download
M content/renderer/media/video_capture_impl_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M content/renderer/media/video_capture_message_filter.cc View 1 2 3 chunks +3 lines, -6 lines 0 comments Download
M content/renderer/media/webmediaplayer_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +20 lines, -1 line 0 comments Download
M media/base/video_frame.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +17 lines, -7 lines 0 comments Download
M media/base/video_frame.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +13 lines, -7 lines 0 comments Download
M media/base/video_frame_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +31 lines, -24 lines 0 comments Download
M media/filters/gpu_video_decoder.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +1 line, -1 line 0 comments Download
M media/filters/gpu_video_decoder.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +2 lines, -4 lines 0 comments Download

Messages

Total messages: 69 (0 generated)
dshwang
VideoFrame can keep multiple sync points, and the sync points are usually resolved at the ...
6 years, 6 months ago (2014-06-03 15:39:40 UTC) #1
Ami GONE FROM CHROMIUM
I defer to sievers/danakj but ISTM tracking one sync point per context is the right ...
6 years, 6 months ago (2014-06-03 16:10:42 UTC) #2
no sievers
What if the video is hidden? Then Get/PutCurrentFrame never gets called, so would it still ...
6 years, 6 months ago (2014-06-03 17:35:06 UTC) #3
no sievers
On 2014/06/03 17:35:06, sievers wrote: > What if the video is hidden? Then Get/PutCurrentFrame never ...
6 years, 6 months ago (2014-06-03 17:35:40 UTC) #4
dshwang
On 2014/06/03 16:10:42, Ami leaving Chromium June 9th wrote: > I defer to sievers/danakj but ...
6 years, 6 months ago (2014-06-04 10:35:18 UTC) #5
no sievers
+piman, jbauman Ok, so this is a real problem on other platforms too then? If ...
6 years, 6 months ago (2014-06-04 18:16:23 UTC) #6
jbauman
On 2014/06/04 18:16:23, sievers wrote: > +piman, jbauman > > Ok, so this is a ...
6 years, 6 months ago (2014-06-04 21:11:18 UTC) #7
no sievers
On 2014/06/04 21:11:18, jbauman wrote: > On 2014/06/04 18:16:23, sievers wrote: > > +piman, jbauman ...
6 years, 6 months ago (2014-06-04 22:56:18 UTC) #8
dshwang
On 2014/06/04 22:56:18, sievers wrote: > Ok, let's just pick a limit for now then ...
6 years, 6 months ago (2014-06-05 14:38:29 UTC) #9
Ami GONE FROM CHROMIUM
Is it reasonable to have VideoFrame::AddSyncPoint return its oldest sync point if the added point ...
6 years, 6 months ago (2014-06-05 14:44:31 UTC) #10
dshwang
https://codereview.chromium.org/312803002/diff/20001/cc/resources/video_resource_updater.cc File cc/resources/video_resource_updater.cc (right): https://codereview.chromium.org/312803002/diff/20001/cc/resources/video_resource_updater.cc#newcode291 cc/resources/video_resource_updater.cc:291: sync_point); On 2014/06/05 14:44:31, Ami leaving Chromium June 9th ...
6 years, 6 months ago (2014-06-05 14:53:18 UTC) #11
no sievers
On 2014/06/05 14:53:18, dshwang wrote: > https://codereview.chromium.org/312803002/diff/20001/cc/resources/video_resource_updater.cc > File cc/resources/video_resource_updater.cc (right): > > https://codereview.chromium.org/312803002/diff/20001/cc/resources/video_resource_updater.cc#newcode291 > ...
6 years, 6 months ago (2014-06-05 17:12:27 UTC) #12
dshwang
On 2014/06/05 17:12:27, sievers wrote: > Wait, whoever inserts a new sync point obviously has ...
6 years, 6 months ago (2014-06-05 17:30:53 UTC) #13
danakj
On Thu, Jun 5, 2014 at 7:30 PM, <dongseong.hwang@intel.com> wrote: > On 2014/06/05 17:12:27, sievers ...
6 years, 6 months ago (2014-06-06 17:50:40 UTC) #14
danakj
On Thu, Jun 5, 2014 at 4:44 PM, Ami Fischman <fischman@chromium.org> wrote: > Is it ...
6 years, 6 months ago (2014-06-06 17:57:58 UTC) #15
dshwang
Thank you for review. On 2014/06/06 17:50:40, danakj wrote: > On Thu, Jun 5, 2014 ...
6 years, 6 months ago (2014-06-06 18:29:25 UTC) #16
danakj
On Fri, Jun 6, 2014 at 2:29 PM, <dongseong.hwang@intel.com> wrote: > Thank you for review. ...
6 years, 6 months ago (2014-06-06 21:59:06 UTC) #17
dshwang
Thank you for good advice. Your points are all right. On 2014/06/06 21:59:06, danakj wrote: ...
6 years, 6 months ago (2014-06-09 12:33:46 UTC) #18
danakj
On Mon, Jun 9, 2014 at 8:33 AM, <dongseong.hwang@intel.com> wrote: > Thank you for good ...
6 years, 6 months ago (2014-06-13 15:47:52 UTC) #19
dshwang
On 2014/06/13 15:47:52, danakj wrote: > On Mon, Jun 9, 2014 at 8:33 AM, <mailto:dongseong.hwang@intel.com> ...
6 years, 6 months ago (2014-06-14 15:34:25 UTC) #20
danakj
On Sat, Jun 14, 2014 at 8:34 AM, <dongseong.hwang@intel.com> wrote: > On 2014/06/13 15:47:52, danakj ...
6 years, 6 months ago (2014-06-17 22:50:05 UTC) #21
dshwang
On 2014/06/17 22:50:05, danakj wrote: > On Sat, Jun 14, 2014 at 8:34 AM, <mailto:dongseong.hwang@intel.com> ...
6 years, 6 months ago (2014-06-18 00:06:10 UTC) #22
Ami GONE FROM CHROMIUM
I think danakj@ and sievers@ have this well in hand, and I'm no longer an ...
6 years, 6 months ago (2014-06-18 00:56:00 UTC) #23
dshwang
Hi, danakj@ and sievers@ I update this CL using Option2 and amend CL's description. Now, ...
6 years, 6 months ago (2014-06-18 15:53:54 UTC) #24
danakj
On Tue, Jun 17, 2014 at 5:06 PM, <dongseong.hwang@intel.com> wrote: > On 2014/06/17 22:50:05, danakj ...
6 years, 6 months ago (2014-06-18 16:00:11 UTC) #25
dshwang
On 2014/06/18 16:00:11, danakj wrote: > You must wait on the old sync point before ...
6 years, 6 months ago (2014-06-18 16:10:20 UTC) #26
danakj
On Wed, Jun 18, 2014 at 9:10 AM, <dongseong.hwang@intel.com> wrote: > On 2014/06/18 16:00:11, danakj ...
6 years, 6 months ago (2014-06-18 16:17:30 UTC) #27
dshwang
On 2014/06/18 16:17:30, danakj wrote: > On Wed, Jun 18, 2014 at 9:10 AM, <mailto:dongseong.hwang@intel.com> ...
6 years, 6 months ago (2014-06-18 16:33:35 UTC) #28
danakj
On Wed, Jun 18, 2014 at 9:33 AM, <dongseong.hwang@intel.com> wrote: > On 2014/06/18 16:17:30, danakj ...
6 years, 6 months ago (2014-06-18 16:44:43 UTC) #29
dshwang
On 2014/06/18 16:44:43, danakj wrote: > > Context A: Compositor > > Context B: WebGL ...
6 years, 6 months ago (2014-06-18 17:01:30 UTC) #30
dshwang
Hi, danakj@, sievers@, I addressed danakj@'s concern in this patch set. Could you review again? ...
6 years, 6 months ago (2014-06-19 10:28:17 UTC) #31
danakj
Thanks, I'm happy with the Client interface so we don't have to give GL pointers ...
6 years, 6 months ago (2014-06-19 15:56:27 UTC) #32
dshwang
Thank you for detailed review. I delay to reply due to Midsummer holiday, which is ...
6 years, 6 months ago (2014-06-23 18:33:20 UTC) #33
danakj
https://codereview.chromium.org/312803002/diff/80001/content/browser/renderer_host/media/video_capture_controller_unittest.cc File content/browser/renderer_host/media/video_capture_controller_unittest.cc (right): https://codereview.chromium.org/312803002/diff/80001/content/browser/renderer_host/media/video_capture_controller_unittest.cc#newcode524 content/browser/renderer_host/media/video_capture_controller_unittest.cc:524: ASSERT_GT(release_syncpoint_vectors[i], mailbox_syncpoints[i]); On 2014/06/23 18:33:20, dshwang wrote: > I ...
6 years, 6 months ago (2014-06-23 18:34:59 UTC) #34
dshwang
https://codereview.chromium.org/312803002/diff/80001/content/browser/renderer_host/media/video_capture_controller_unittest.cc File content/browser/renderer_host/media/video_capture_controller_unittest.cc (right): https://codereview.chromium.org/312803002/diff/80001/content/browser/renderer_host/media/video_capture_controller_unittest.cc#newcode524 content/browser/renderer_host/media/video_capture_controller_unittest.cc:524: ASSERT_GT(release_syncpoint_vectors[i], mailbox_syncpoints[i]); yes, it's not enough. This check's goal ...
6 years, 6 months ago (2014-06-23 18:50:38 UTC) #35
dshwang
https://codereview.chromium.org/312803002/diff/80001/content/browser/renderer_host/media/video_capture_controller_unittest.cc File content/browser/renderer_host/media/video_capture_controller_unittest.cc (right): https://codereview.chromium.org/312803002/diff/80001/content/browser/renderer_host/media/video_capture_controller_unittest.cc#newcode524 content/browser/renderer_host/media/video_capture_controller_unittest.cc:524: ASSERT_GT(release_syncpoint_vectors[i], mailbox_syncpoints[i]); Ah, sorry for wrong answer of your ...
6 years, 6 months ago (2014-06-23 18:53:53 UTC) #36
dshwang
https://codereview.chromium.org/312803002/diff/100001/content/browser/renderer_host/media/video_capture_controller.cc File content/browser/renderer_host/media/video_capture_controller.cc (right): https://codereview.chromium.org/312803002/diff/100001/content/browser/renderer_host/media/video_capture_controller.cc#newcode76 content/browser/renderer_host/media/video_capture_controller.cc:76: GLHelper* gl_helper = ImageTransportFactory::GetInstance()->GetGLHelper(); I found that android can ...
6 years, 6 months ago (2014-06-23 19:42:07 UTC) #37
dshwang
I made in-process impl of ImageTransportFactoryAndroid for unittests, because video_capture_controller_unittest needs to use ImageTransportFactory. Could ...
6 years, 6 months ago (2014-06-24 14:04:22 UTC) #38
dshwang
Hi, would you have a chance to review again?
6 years, 5 months ago (2014-06-30 19:05:36 UTC) #39
danakj
https://codereview.chromium.org/312803002/diff/160001/content/browser/renderer_host/image_transport_factory_android.cc File content/browser/renderer_host/image_transport_factory_android.cc (right): https://codereview.chromium.org/312803002/diff/160001/content/browser/renderer_host/image_transport_factory_android.cc#newcode107 content/browser/renderer_host/image_transport_factory_android.cc:107: class NoImageTransportFactory : public ImageTransportFactoryAndroid { one class per ...
6 years, 5 months ago (2014-07-02 21:43:03 UTC) #40
dshwang
Thank you for review. On 2014/07/02 21:43:03, danakj wrote: > https://codereview.chromium.org/312803002/diff/160001/content/browser/renderer_host/image_transport_factory_android.cc > File content/browser/renderer_host/image_transport_factory_android.cc (right): ...
6 years, 5 months ago (2014-07-03 18:18:35 UTC) #41
dshwang
danakj@: Please review changes in cc/ sievers@: Please review changes in content/browser/renderer_host xhwang@: Please review ...
6 years, 5 months ago (2014-07-10 15:39:26 UTC) #42
danakj
https://codereview.chromium.org/312803002/diff/220001/cc/output/context_provider.h File cc/output/context_provider.h (right): https://codereview.chromium.org/312803002/diff/220001/cc/output/context_provider.h#newcode25 cc/output/context_provider.h:25: public base::SupportsWeakPtr<ContextProvider> { ಠ_ಠ let's not do this please ...
6 years, 5 months ago (2014-07-10 17:09:15 UTC) #43
no sievers
https://codereview.chromium.org/312803002/diff/220001/content/browser/media/capture/desktop_capture_device_aura.cc File content/browser/media/capture/desktop_capture_device_aura.cc (right): https://codereview.chromium.org/312803002/diff/220001/content/browser/media/capture/desktop_capture_device_aura.cc#newcode301 content/browser/media/capture/desktop_capture_device_aura.cc:301: cb->Run(sync_point, false); maybe remove this function since it doesn't ...
6 years, 5 months ago (2014-07-10 18:52:29 UTC) #44
danakj
https://codereview.chromium.org/312803002/diff/220001/media/base/video_frame.cc File media/base/video_frame.cc (right): https://codereview.chromium.org/312803002/diff/220001/media/base/video_frame.cc#newcode666 media/base/video_frame.cc:666: base::AutoLock locker(release_sync_point_lock_); On 2014/07/10 18:52:29, sievers wrote: > Why ...
6 years, 5 months ago (2014-07-10 19:15:57 UTC) #45
dshwang
danakj@, sievers@, Thank you for reviewing. I'll apply all your comment to next patch set. ...
6 years, 5 months ago (2014-07-10 19:23:12 UTC) #46
no sievers
https://codereview.chromium.org/312803002/diff/220001/media/base/video_frame.cc File media/base/video_frame.cc (right): https://codereview.chromium.org/312803002/diff/220001/media/base/video_frame.cc#newcode666 media/base/video_frame.cc:666: base::AutoLock locker(release_sync_point_lock_); On 2014/07/10 19:15:57, danakj wrote: > On ...
6 years, 5 months ago (2014-07-10 19:27:47 UTC) #47
danakj
https://codereview.chromium.org/312803002/diff/220001/cc/resources/video_resource_updater.cc File cc/resources/video_resource_updater.cc (right): https://codereview.chromium.org/312803002/diff/220001/cc/resources/video_resource_updater.cc#newcode306 cc/resources/video_resource_updater.cc:306: base::WeakPtr<ContextProvider> context_provider, On 2014/07/10 19:23:11, dshwang wrote: > I ...
6 years, 5 months ago (2014-07-10 20:00:49 UTC) #48
dshwang
danakj@, sievers@, Thank you for detail review. I apply your all comments to this patch ...
6 years, 5 months ago (2014-07-10 21:44:26 UTC) #49
danakj
Thanks! cc LGTM https://codereview.chromium.org/312803002/diff/240001/media/base/video_frame.cc File media/base/video_frame.cc (right): https://codereview.chromium.org/312803002/diff/240001/media/base/video_frame.cc#newcode825 media/base/video_frame.cc:825: // Must wait the previous sync ...
6 years, 5 months ago (2014-07-10 21:49:26 UTC) #50
dshwang
On 2014/07/10 21:49:26, danakj wrote: > Thanks! cc LGTM Thanks! > https://codereview.chromium.org/312803002/diff/240001/media/base/video_frame.cc > File media/base/video_frame.cc ...
6 years, 5 months ago (2014-07-10 22:12:16 UTC) #51
dshwang
sievers@: Please review changes in content/browser/renderer_host xhwang@: Please review changes in content/*/media and media/
6 years, 5 months ago (2014-07-14 13:57:13 UTC) #52
xhwang
I am not very familiar with mailbox/syncpoint code. So if you'd like to find someone ...
6 years, 5 months ago (2014-07-14 15:40:31 UTC) #53
no sievers
On 2014/07/14 13:57:13, dshwang wrote: > sievers@: Please review changes in content/browser/renderer_host lgtm
6 years, 5 months ago (2014-07-14 19:52:51 UTC) #54
dshwang
Thank you for review, all. nasko@: Please review changes in content/common/media/video_capture_messages.h
6 years, 5 months ago (2014-07-15 15:08:37 UTC) #55
nasko
IPC LGTM
6 years, 5 months ago (2014-07-16 08:28:12 UTC) #56
dshwang
The CQ bit was checked by dongseong.hwang@intel.com
6 years, 5 months ago (2014-07-18 15:06:58 UTC) #57
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dongseong.hwang@intel.com/312803002/300001
6 years, 5 months ago (2014-07-18 15:07:54 UTC) #58
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: ios_dbg_simulator on tryserver.chromium ...
6 years, 5 months ago (2014-07-18 17:57:15 UTC) #59
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-07-18 18:00:09 UTC) #60
commit-bot: I haz the power
Try jobs failed on following builders: ios_rel_device on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/ios_rel_device/builds/160711) ios_rel_device_ninja on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/ios_rel_device_ninja/builds/29116)
6 years, 5 months ago (2014-07-18 18:00:10 UTC) #61
dshwang
The CQ bit was checked by dongseong.hwang@intel.com
6 years, 5 months ago (2014-07-22 08:12:13 UTC) #62
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dongseong.hwang@intel.com/312803002/300001
6 years, 5 months ago (2014-07-22 08:13:23 UTC) #63
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: ios_dbg_simulator on tryserver.chromium ...
6 years, 5 months ago (2014-07-22 08:21:59 UTC) #64
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-07-22 08:23:55 UTC) #65
commit-bot: I haz the power
Try jobs failed on following builders: ios_rel_device on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/ios_rel_device/builds/161449) ios_rel_device_ninja on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/ios_rel_device_ninja/builds/29570)
6 years, 5 months ago (2014-07-22 08:23:56 UTC) #66
dshwang
The CQ bit was checked by dongseong.hwang@intel.com
6 years, 5 months ago (2014-07-22 08:42:44 UTC) #67
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dongseong.hwang@intel.com/312803002/320001
6 years, 5 months ago (2014-07-22 08:43:28 UTC) #68
commit-bot: I haz the power
6 years, 5 months ago (2014-07-22 10:32:02 UTC) #69
Message was sent while issue was closed.
Change committed as 284658

Powered by Google App Engine
This is Rietveld 408576698