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

Issue 1641353003: GpuArcVideoService (Closed)

Created:
4 years, 10 months ago by kcwu
Modified:
4 years, 8 months ago
CC:
chromium-reviews, davemoore+watch_chromium.org, oshima+watch_chromium.org, piman+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@arc-4-owen-ArcGpuVideoDecodeAccelerator
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Implements GpuArcVideoService and its host In the GPU process, GpuArcVideoService (arc::VideoHost) is registered via content's gpu client hook. It also manages additional IPC channel per accelerator and dispatches calls to ArcVideoAccelerator. In the browser process, GpuArcVideoServiceHost listens events of ArcBridgeService and pass to GpuArcVideoService. BUG=b/25057601 TEST=video from arc playbacks Committed: https://crrev.com/e5654af3fec812e02719216a0014698b235cd52f Cr-Commit-Position: refs/heads/master@{#387799}

Patch Set 1 #

Patch Set 2 : implements stub, assume ArcGVDA has moved to src/chrome #

Patch Set 3 : minor revise #

Patch Set 4 : migrate to use new mojo edk. +temporary workaround #

Patch Set 5 : revise how to bootstrap #

Patch Set 6 : update ArcVideoAccelerator api #

Total comments: 10

Patch Set 7 : addressed Owen's comments #

Total comments: 20

Patch Set 8 : address lhchavez and dcheng's comments #

Patch Set 9 : sync with arc_vda.h change (async reset) #

Patch Set 10 : pass GpuPreferences to ArcGVDA #

Patch Set 11 : modify content gui client hook #

Total comments: 16

Patch Set 12 : address lhchavez and dcheng's comments #

Total comments: 4

Patch Set 13 : address lhchavez's comments #

Patch Set 14 : rebase #

Total comments: 2

Patch Set 15 : remove pid and GpuPreferences #

Total comments: 4

Patch Set 16 : address Luis' comments #

Total comments: 10

Patch Set 17 : address dcheng's comments #

Patch Set 18 : address dcheng's comments (uint32) #

Total comments: 10

Patch Set 19 : update video_accelerator.mojom #

Total comments: 2

Patch Set 20 : add AVA.h and cut down dependency #

Patch Set 21 : fix build #

Unified diffs Side-by-side diffs Delta from patch set Stats (+851 lines, -14 lines) Patch
M chrome/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +2 lines, -0 lines 0 comments Download
M chrome/app/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +1 line, -0 lines 0 comments Download
M chrome/app/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -0 lines 0 comments Download
M chrome/app/chrome_main_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -0 lines 0 comments Download
M chrome/app/chrome_main_delegate.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +11 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/arc/arc_service_launcher.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +4 lines, -1 line 0 comments Download
A chrome/browser/chromeos/arc/gpu_arc_video_service_host.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +58 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/arc/gpu_arc_video_service_host.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +72 lines, -0 lines 0 comments Download
M chrome/chrome.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +2 lines, -0 lines 0 comments Download
M chrome/chrome_android.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +1 line, -0 lines 0 comments Download
M chrome/chrome_browser_chromeos.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +2 lines, -0 lines 0 comments Download
A chrome/chrome_gpu.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +33 lines, -0 lines 0 comments Download
M chrome/chrome_tests_unit.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +1 line, -0 lines 0 comments Download
A chrome/gpu/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +23 lines, -0 lines 0 comments Download
A chrome/gpu/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +7 lines, -0 lines 0 comments Download
A + chrome/gpu/OWNERS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -0 lines 0 comments Download
A chrome/gpu/arc_video_accelerator.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +151 lines, -0 lines 0 comments Download
A chrome/gpu/chrome_content_gpu_client.h View 1 2 10 11 12 13 14 1 chunk +23 lines, -0 lines 0 comments Download
A chrome/gpu/chrome_content_gpu_client.cc View 1 2 3 4 5 6 7 10 11 12 13 14 1 chunk +37 lines, -0 lines 0 comments Download
A chrome/gpu/gpu_arc_video_service.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +57 lines, -0 lines 0 comments Download
A chrome/gpu/gpu_arc_video_service.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +261 lines, -0 lines 0 comments Download
M components/arc.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -0 lines 0 comments Download
M components/arc/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -0 lines 0 comments Download
M components/arc/arc_bridge_bootstrap.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +3 lines, -11 lines 0 comments Download
M components/arc/common/video.mojom View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +6 lines, -2 lines 0 comments Download
A components/arc/common/video_accelerator.mojom View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +91 lines, -0 lines 0 comments Download

Messages

Total messages: 77 (17 generated)
kcwu
4 years, 10 months ago (2016-02-01 12:41:06 UTC) #2
kcwu
PTAL
4 years, 9 months ago (2016-03-08 07:39:36 UTC) #4
wuchengli
Luis. Please take a look. Thanks.
4 years, 9 months ago (2016-03-14 06:50:57 UTC) #6
Owen Lin
https://codereview.chromium.org/1641353003/diff/100001/chrome/browser/chromeos/arc/gpu_arc_video_service_host.h File chrome/browser/chromeos/arc/gpu_arc_video_service_host.h (right): https://codereview.chromium.org/1641353003/diff/100001/chrome/browser/chromeos/arc/gpu_arc_video_service_host.h#newcode23 chrome/browser/chromeos/arc/gpu_arc_video_service_host.h:23: // This class passes requests from arc::VideoInstance to GpuArcVideoService ...
4 years, 9 months ago (2016-03-14 08:45:52 UTC) #7
kcwu
https://codereview.chromium.org/1641353003/diff/100001/chrome/browser/chromeos/arc/gpu_arc_video_service_host.h File chrome/browser/chromeos/arc/gpu_arc_video_service_host.h (right): https://codereview.chromium.org/1641353003/diff/100001/chrome/browser/chromeos/arc/gpu_arc_video_service_host.h#newcode23 chrome/browser/chromeos/arc/gpu_arc_video_service_host.h:23: // This class passes requests from arc::VideoInstance to GpuArcVideoService ...
4 years, 9 months ago (2016-03-14 12:55:49 UTC) #8
wuchengli
Luis. Please review *.mojom and chrome/gpu/gpu_arc_video_service.cc. Thanks.
4 years, 9 months ago (2016-03-16 06:51:38 UTC) #9
Owen Lin
lgtm
4 years, 9 months ago (2016-03-16 08:41:29 UTC) #10
kcwu
Owner review, please cpu: chrome/app, chrome/gpu lhchavez: chrome/browser/chromeos/arc, components/arc, and Connect() in gpu_arc_video_service.cc dcheng: *.mojom ...
4 years, 9 months ago (2016-03-16 09:31:48 UTC) #12
dcheng
https://codereview.chromium.org/1641353003/diff/120001/chrome/browser/chromeos/arc/gpu_arc_video_service_host.cc File chrome/browser/chromeos/arc/gpu_arc_video_service_host.cc (right): https://codereview.chromium.org/1641353003/diff/120001/chrome/browser/chromeos/arc/gpu_arc_video_service_host.cc#newcode61 chrome/browser/chromeos/arc/gpu_arc_video_service_host.cc:61: auto* ptr_info = new mojo::InterfacePtrInfo<arc::VideoHost>(); How about using PostTaskAndReplyWithResult ...
4 years, 9 months ago (2016-03-16 17:44:51 UTC) #13
Luis Héctor Chávez
Overall approach in this side lg. https://codereview.chromium.org/1641353003/diff/120001/chrome/browser/chromeos/arc/gpu_arc_video_service_host.cc File chrome/browser/chromeos/arc/gpu_arc_video_service_host.cc (right): https://codereview.chromium.org/1641353003/diff/120001/chrome/browser/chromeos/arc/gpu_arc_video_service_host.cc#newcode47 chrome/browser/chromeos/arc/gpu_arc_video_service_host.cc:47: arc_bridge_service()->video_instance()->Init( I'd just ...
4 years, 9 months ago (2016-03-16 19:07:55 UTC) #14
cpu_(ooo_6.6-7.5)
chrome/app looks fine. I am not a good reviewer for /gpu/
4 years, 9 months ago (2016-03-16 19:25:09 UTC) #15
kcwu
add sievers@chromium.org for chrome/gpu owner review (owner added in crrev.com/1549473002) PTAL, thanks. https://codereview.chromium.org/1641353003/diff/120001/chrome/browser/chromeos/arc/gpu_arc_video_service_host.cc File chrome/browser/chromeos/arc/gpu_arc_video_service_host.cc ...
4 years, 9 months ago (2016-03-17 08:07:44 UTC) #16
kcwu
Ah, said adding @sievers but actually forgot. Sorry.
4 years, 9 months ago (2016-03-18 13:03:49 UTC) #18
no sievers
lgtm
4 years, 9 months ago (2016-03-18 18:22:10 UTC) #19
wuchengli
Luis. PTAL. Thanks.
4 years, 9 months ago (2016-03-21 06:53:14 UTC) #20
kcwu
@cpu (for chrome/app) and @dcheng, PTAL. Thanks.
4 years, 9 months ago (2016-03-21 10:04:50 UTC) #21
jam
I got pointed at this cl from https://codereview.chromium.org/1808743002/. I'm trying to figure out why GpuPreferences ...
4 years, 9 months ago (2016-03-21 14:53:57 UTC) #23
wuchengli
On 2016/03/16 19:25:09, cpu wrote: > chrome/app looks fine. I am not a good reviewer ...
4 years, 9 months ago (2016-03-24 06:50:24 UTC) #24
kcwu
On 2016/03/21 14:53:57, jam wrote: > I got pointed at this cl from https://codereview.chromium.org/1808743002/. I ...
4 years, 9 months ago (2016-03-24 13:14:13 UTC) #25
Luis Héctor Chávez
On 2016/03/17 08:07:44, kcwu wrote: > add mailto:sievers@chromium.org for chrome/gpu owner review > (owner added ...
4 years, 9 months ago (2016-03-24 17:24:10 UTC) #26
Luis Héctor Chávez
https://codereview.chromium.org/1641353003/diff/200001/chrome/gpu/gpu_arc_video_service.cc File chrome/gpu/gpu_arc_video_service.cc (right): https://codereview.chromium.org/1641353003/diff/200001/chrome/gpu/gpu_arc_video_service.cc#newcode31 chrome/gpu/gpu_arc_video_service.cc:31: base::ProcessHandle RemapChildPid(uint32_t pid) { Can you move this somewhere ...
4 years, 9 months ago (2016-03-24 17:24:20 UTC) #27
dcheng
https://codereview.chromium.org/1641353003/diff/120001/chrome/gpu/gpu_arc_video_service.cc File chrome/gpu/gpu_arc_video_service.cc (right): https://codereview.chromium.org/1641353003/diff/120001/chrome/gpu/gpu_arc_video_service.cc#newcode27 chrome/gpu/gpu_arc_video_service.cc:27: // by kPidBase and don't conflict with legitimate process. ...
4 years, 9 months ago (2016-03-24 20:29:15 UTC) #28
Luis Héctor Chávez
https://codereview.chromium.org/1641353003/diff/200001/chrome/gpu/gpu_arc_video_service.cc File chrome/gpu/gpu_arc_video_service.cc (right): https://codereview.chromium.org/1641353003/diff/200001/chrome/gpu/gpu_arc_video_service.cc#newcode199 chrome/gpu/gpu_arc_video_service.cc:199: static_cast<size_t>(offset), On 2016/03/24 20:29:14, dcheng wrote: > These static ...
4 years, 9 months ago (2016-03-24 23:16:53 UTC) #29
kcwu
https://codereview.chromium.org/1641353003/diff/200001/chrome/app/chrome_main_delegate.cc File chrome/app/chrome_main_delegate.cc (right): https://codereview.chromium.org/1641353003/diff/200001/chrome/app/chrome_main_delegate.cc#newcode992 chrome/app/chrome_main_delegate.cc:992: return NULL; On 2016/03/24 20:29:14, dcheng wrote: > nullptr ...
4 years, 8 months ago (2016-03-28 13:17:35 UTC) #30
Luis Héctor Chávez
components/arc lgtm with nits. https://codereview.chromium.org/1641353003/diff/220001/components/arc/arc_bridge_bootstrap.cc File components/arc/arc_bridge_bootstrap.cc (right): https://codereview.chromium.org/1641353003/diff/220001/components/arc/arc_bridge_bootstrap.cc#newcode37 components/arc/arc_bridge_bootstrap.cc:37: base::ProcessHandle RemapChildPid(uint32_t pid) { nit: ...
4 years, 8 months ago (2016-03-28 16:01:28 UTC) #31
kcwu
https://codereview.chromium.org/1641353003/diff/220001/components/arc/arc_bridge_bootstrap.cc File components/arc/arc_bridge_bootstrap.cc (right): https://codereview.chromium.org/1641353003/diff/220001/components/arc/arc_bridge_bootstrap.cc#newcode37 components/arc/arc_bridge_bootstrap.cc:37: base::ProcessHandle RemapChildPid(uint32_t pid) { On 2016/03/28 16:01:27, Luis Héctor ...
4 years, 8 months ago (2016-03-28 18:16:50 UTC) #32
jam
On 2016/03/24 13:14:13, kcwu wrote: > On 2016/03/21 14:53:57, jam wrote: > > I got ...
4 years, 8 months ago (2016-03-30 16:24:26 UTC) #33
dcheng
My question about RemapChildPid has still not been answered. If the child pid is not ...
4 years, 8 months ago (2016-03-30 16:52:36 UTC) #34
Luis Héctor Chávez
On 2016/03/30 16:52:36, dcheng wrote: > My question about RemapChildPid has still not been answered. ...
4 years, 8 months ago (2016-03-30 16:56:09 UTC) #35
dcheng
On 2016/03/30 at 16:56:09, lhchavez wrote: > On 2016/03/30 16:52:36, dcheng wrote: > > My ...
4 years, 8 months ago (2016-03-30 16:58:33 UTC) #36
kcwu
On 2016/03/30 16:24:26, jam wrote: > after following the above cls, the gpu preferences is ...
4 years, 8 months ago (2016-03-30 17:03:44 UTC) #37
no sievers
On 2016/03/30 17:03:44, kcwu wrote: > On 2016/03/30 16:24:26, jam wrote: > > after following ...
4 years, 8 months ago (2016-03-30 17:21:46 UTC) #38
jam
On 2016/03/30 17:03:44, kcwu wrote: > On 2016/03/30 16:24:26, jam wrote: > > after following ...
4 years, 8 months ago (2016-03-30 17:44:17 UTC) #39
kcwu
On 2016/03/30 17:44:17, jam wrote: > On 2016/03/30 17:03:44, kcwu wrote: > > GpuPreferences is ...
4 years, 8 months ago (2016-03-31 14:30:00 UTC) #40
jam
On 2016/03/31 14:30:00, kcwu wrote: > On 2016/03/30 17:44:17, jam wrote: > > On 2016/03/30 ...
4 years, 8 months ago (2016-04-01 16:23:14 UTC) #41
Luis Héctor Chávez
On 2016/03/30 16:58:33, dcheng wrote: > On 2016/03/30 at 16:56:09, lhchavez wrote: > > On ...
4 years, 8 months ago (2016-04-01 16:51:21 UTC) #42
kcwu
John, Daniel, Luis, PTAL. https://codereview.chromium.org/1641353003/diff/260001/chrome/gpu/gpu_arc_video_service.cc File chrome/gpu/gpu_arc_video_service.cc (right): https://codereview.chromium.org/1641353003/diff/260001/chrome/gpu/gpu_arc_video_service.cc#newcode158 chrome/gpu/gpu_arc_video_service.cc:158: // ::arc::VideoAcceleratorService impementation: On 2016/03/30 ...
4 years, 8 months ago (2016-04-06 12:42:25 UTC) #43
Luis Héctor Chávez
https://codereview.chromium.org/1641353003/diff/280001/chrome/gpu/gpu_arc_video_service.cc File chrome/gpu/gpu_arc_video_service.cc (right): https://codereview.chromium.org/1641353003/diff/280001/chrome/gpu/gpu_arc_video_service.cc#newcode232 chrome/gpu/gpu_arc_video_service.cc:232: mojo::edk::ChildProcessLaunched(0); nit: Use a constant. constexpr base::ProcessHandle kUnusedChildProcessHandle = ...
4 years, 8 months ago (2016-04-06 15:23:13 UTC) #44
kcwu
https://codereview.chromium.org/1641353003/diff/280001/chrome/gpu/gpu_arc_video_service.cc File chrome/gpu/gpu_arc_video_service.cc (right): https://codereview.chromium.org/1641353003/diff/280001/chrome/gpu/gpu_arc_video_service.cc#newcode232 chrome/gpu/gpu_arc_video_service.cc:232: mojo::edk::ChildProcessLaunched(0); On 2016/04/06 15:23:13, Luis Héctor Chávez wrote: > ...
4 years, 8 months ago (2016-04-07 01:02:27 UTC) #45
dcheng
https://codereview.chromium.org/1641353003/diff/300001/chrome/gpu/gpu_arc_video_service.cc File chrome/gpu/gpu_arc_video_service.cc (right): https://codereview.chromium.org/1641353003/diff/300001/chrome/gpu/gpu_arc_video_service.cc#newcode181 chrome/gpu/gpu_arc_video_service.cc:181: static_cast<size_t>(length)); My earlier question still stands: is the arc ...
4 years, 8 months ago (2016-04-07 02:17:57 UTC) #46
kcwu
https://codereview.chromium.org/1641353003/diff/300001/chrome/gpu/gpu_arc_video_service.cc File chrome/gpu/gpu_arc_video_service.cc (right): https://codereview.chromium.org/1641353003/diff/300001/chrome/gpu/gpu_arc_video_service.cc#newcode181 chrome/gpu/gpu_arc_video_service.cc:181: static_cast<size_t>(length)); On 2016/04/07 02:17:57, dcheng wrote: > My earlier ...
4 years, 8 months ago (2016-04-07 08:17:58 UTC) #47
dcheng
https://codereview.chromium.org/1641353003/diff/300001/chrome/gpu/gpu_arc_video_service.cc File chrome/gpu/gpu_arc_video_service.cc (right): https://codereview.chromium.org/1641353003/diff/300001/chrome/gpu/gpu_arc_video_service.cc#newcode181 chrome/gpu/gpu_arc_video_service.cc:181: static_cast<size_t>(length)); On 2016/04/07 at 08:17:57, kcwu wrote: > On ...
4 years, 8 months ago (2016-04-07 08:19:20 UTC) #48
kcwu
https://codereview.chromium.org/1641353003/diff/300001/chrome/gpu/gpu_arc_video_service.cc File chrome/gpu/gpu_arc_video_service.cc (right): https://codereview.chromium.org/1641353003/diff/300001/chrome/gpu/gpu_arc_video_service.cc#newcode181 chrome/gpu/gpu_arc_video_service.cc:181: static_cast<size_t>(length)); On 2016/04/07 08:19:20, dcheng wrote: > On 2016/04/07 ...
4 years, 8 months ago (2016-04-07 08:32:33 UTC) #49
jam
lgtm
4 years, 8 months ago (2016-04-08 16:19:32 UTC) #50
dcheng
https://codereview.chromium.org/1641353003/diff/340001/chrome/browser/chromeos/arc/arc_service_launcher.cc File chrome/browser/chromeos/arc/arc_service_launcher.cc (right): https://codereview.chromium.org/1641353003/diff/340001/chrome/browser/chromeos/arc/arc_service_launcher.cc#newcode34 chrome/browser/chromeos/arc/arc_service_launcher.cc:34: arc_service_manager_->AddService(make_scoped_ptr( BTW chromeos directory uses base::WrapUnique and std::unique_ptr now. ...
4 years, 8 months ago (2016-04-10 05:01:23 UTC) #51
edzyaani9093
4 years, 8 months ago (2016-04-10 07:31:49 UTC) #53
edzyaani9093
4 years, 8 months ago (2016-04-10 07:32:35 UTC) #54
edzyaani9093
lgtm
4 years, 8 months ago (2016-04-10 08:21:41 UTC) #55
kcwu
https://codereview.chromium.org/1641353003/diff/340001/chrome/browser/chromeos/arc/arc_service_launcher.cc File chrome/browser/chromeos/arc/arc_service_launcher.cc (right): https://codereview.chromium.org/1641353003/diff/340001/chrome/browser/chromeos/arc/arc_service_launcher.cc#newcode34 chrome/browser/chromeos/arc/arc_service_launcher.cc:34: arc_service_manager_->AddService(make_scoped_ptr( On 2016/04/10 05:01:23, dcheng wrote: > BTW chromeos ...
4 years, 8 months ago (2016-04-11 04:07:32 UTC) #56
dcheng
https://codereview.chromium.org/1641353003/diff/340001/components/arc/common/video_accelerator.mojom File components/arc/common/video_accelerator.mojom (right): https://codereview.chromium.org/1641353003/diff/340001/components/arc/common/video_accelerator.mojom#newcode18 components/arc/common/video_accelerator.mojom:18: [Extensible] On 2016/04/11 04:07:32, kcwu wrote: > On 2016/04/10 ...
4 years, 8 months ago (2016-04-11 04:26:32 UTC) #57
kcwu
https://codereview.chromium.org/1641353003/diff/340001/components/arc/common/video_accelerator.mojom File components/arc/common/video_accelerator.mojom (right): https://codereview.chromium.org/1641353003/diff/340001/components/arc/common/video_accelerator.mojom#newcode18 components/arc/common/video_accelerator.mojom:18: [Extensible] On 2016/04/11 04:26:32, dcheng wrote: > On 2016/04/11 ...
4 years, 8 months ago (2016-04-11 04:44:33 UTC) #58
dcheng
lgtm https://codereview.chromium.org/1641353003/diff/340001/components/arc/common/video_accelerator.mojom File components/arc/common/video_accelerator.mojom (right): https://codereview.chromium.org/1641353003/diff/340001/components/arc/common/video_accelerator.mojom#newcode18 components/arc/common/video_accelerator.mojom:18: [Extensible] On 2016/04/11 04:44:33, kcwu wrote: > On ...
4 years, 8 months ago (2016-04-11 04:56:54 UTC) #59
Luis Héctor Chávez
Btw, why hasn't this side of the change landed yet? https://codereview.chromium.org/1641353003/diff/360001/components/arc/common/video.mojom File components/arc/common/video.mojom (left): https://codereview.chromium.org/1641353003/diff/360001/components/arc/common/video.mojom#oldcode5 ...
4 years, 8 months ago (2016-04-14 21:42:14 UTC) #60
kcwu
On 2016/04/14 21:42:14, Luis Héctor Chávez wrote: > Btw, why hasn't this side of the ...
4 years, 8 months ago (2016-04-15 04:22:00 UTC) #61
kcwu
Hi @jam, In order to cut down dependency of this CL (this CL depends on ...
4 years, 8 months ago (2016-04-15 04:42:24 UTC) #62
jam
On 2016/04/15 04:42:24, kcwu wrote: > Hi @jam, > > In order to cut down ...
4 years, 8 months ago (2016-04-15 16:14:00 UTC) #67
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1641353003/480001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1641353003/480001
4 years, 8 months ago (2016-04-15 17:35:45 UTC) #70
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1641353003/480001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1641353003/480001
4 years, 8 months ago (2016-04-16 02:36:04 UTC) #73
commit-bot: I haz the power
Committed patchset #21 (id:480001)
4 years, 8 months ago (2016-04-16 02:41:03 UTC) #75
commit-bot: I haz the power
4 years, 8 months ago (2016-04-16 02:42:19 UTC) #77
Message was sent while issue was closed.
Patchset 21 (id:??) landed as
https://crrev.com/e5654af3fec812e02719216a0014698b235cd52f
Cr-Commit-Position: refs/heads/master@{#387799}

Powered by Google App Engine
This is Rietveld 408576698