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

Issue 348093004: Make cc output surface creation async (Closed)

Created:
6 years, 6 months ago by enne (OOO)
Modified:
6 years, 2 months ago
CC:
cc-bugs_chromium.org, chromium-reviews, danakj+watch_chromium.org, darin-cc_chromium.org, jam, jbauman+watch_chromium.org, kalyank, piman+watch_chromium.org, sievers+watch_chromium.org, Ian Vollick
Project:
chromium
Visibility:
Public.

Description

Make cc output surface creation async As a part of making Android CompositorImpl use cc's scheduler and not post its own composite calls manually, cc needs to be able to handle asynchronous output surface creation. This change modifies CreateOutputSurface to instead be RequestNewOutputSurface, which the LayerTreeHostClient must respond to and call SetOutputSurface on the host with the new output surface once it is ready. Because the LayerTreeHostClient must now talk to the host as a part of output surface creation, a bunch of unit test code needed to be refactored to handle this. BUG=none Committed: https://crrev.com/2097cab4982cc0ad92b878ad88e39d724dd047f7 Cr-Commit-Position: refs/heads/master@{#296780}

Patch Set 1 #

Total comments: 11

Patch Set 2 : Rebase #

Patch Set 3 : sievers review #

Total comments: 7

Patch Set 4 : danakj review #

Patch Set 5 : Rebase #

Patch Set 6 : Rebase #

Patch Set 7 : Rebase #

Patch Set 8 : Rebase #

Patch Set 9 : Rebase #

Patch Set 10 : Rebase #

Patch Set 11 : Fix up more LayerTreeHostClient callsites #

Patch Set 12 : Android compile fixes #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+364 lines, -211 lines) Patch
M android_webview/browser/hardware_renderer.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -2 lines 0 comments Download
M android_webview/browser/hardware_renderer.cc View 1 2 3 4 5 6 7 8 9 2 chunks +3 lines, -3 lines 0 comments Download
M cc/blink/web_layer_impl_fixed_bounds_unittest.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +3 lines, -1 line 0 comments Download
M cc/debug/micro_benchmark_controller_unittest.cc View 2 chunks +5 lines, -1 line 0 comments Download
M cc/layers/contents_scaling_layer_unittest.cc View 1 chunk +2 lines, -1 line 0 comments Download
M cc/layers/delegated_renderer_layer_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +4 lines, -2 lines 0 comments Download
M cc/layers/layer_iterator_unittest.cc View 3 chunks +6 lines, -3 lines 0 comments Download
M cc/layers/layer_perftest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/layers/nine_patch_layer_unittest.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M cc/layers/picture_layer_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -2 lines 0 comments Download
M cc/layers/picture_layer_unittest.cc View 1 2 3 4 5 6 7 8 9 2 chunks +6 lines, -3 lines 0 comments Download
M cc/layers/scrollbar_layer_unittest.cc View 1 2 3 4 5 6 7 8 9 8 chunks +16 lines, -8 lines 0 comments Download
M cc/layers/solid_color_layer_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -1 line 0 comments Download
M cc/layers/tiled_layer_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
M cc/layers/ui_resource_layer_unittest.cc View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M cc/test/fake_layer_tree_host.h View 2 chunks +5 lines, -4 lines 0 comments Download
M cc/test/fake_layer_tree_host.cc View 1 chunk +15 lines, -8 lines 0 comments Download
M cc/test/fake_layer_tree_host_client.h View 1 2 3 4 5 6 7 8 9 3 chunks +6 lines, -1 line 0 comments Download
M cc/test/fake_layer_tree_host_client.cc View 2 chunks +19 lines, -12 lines 0 comments Download
M cc/test/fake_proxy.h View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
M cc/test/layer_test_common.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
M cc/test/layer_test_common.cc View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -1 line 0 comments Download
M cc/test/layer_tree_host_common_test.h View 3 chunks +5 lines, -0 lines 0 comments Download
M cc/test/layer_tree_host_common_test.cc View 2 chunks +8 lines, -1 line 0 comments Download
M cc/test/layer_tree_test.h View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -2 lines 0 comments Download
M cc/test/layer_tree_test.cc View 1 2 3 4 5 6 7 8 9 2 chunks +6 lines, -3 lines 0 comments Download
M cc/trees/layer_tree_host.h View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -1 line 0 comments Download
M cc/trees/layer_tree_host.cc View 1 2 3 4 5 6 7 8 9 2 chunks +13 lines, -7 lines 0 comments Download
M cc/trees/layer_tree_host_client.h View 1 2 3 4 5 6 7 8 9 1 chunk +5 lines, -3 lines 0 comments Download
M cc/trees/layer_tree_host_common_unittest.cc View 1 2 3 4 5 6 7 8 9 66 chunks +67 lines, -66 lines 0 comments Download
M cc/trees/layer_tree_host_unittest.cc View 1 2 3 4 5 6 7 8 9 5 chunks +5 lines, -0 lines 0 comments Download
M cc/trees/layer_tree_host_unittest_context.cc View 1 2 3 4 5 6 7 8 9 8 chunks +60 lines, -2 lines 0 comments Download
M cc/trees/layer_tree_host_unittest_no_message_loop.cc View 1 2 3 4 5 6 7 8 9 1 chunk +3 lines, -3 lines 0 comments Download
M cc/trees/occlusion_tracker_unittest.cc View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -1 line 0 comments Download
M cc/trees/proxy.h View 1 2 3 4 5 6 7 8 9 1 chunk +4 lines, -0 lines 0 comments Download
M cc/trees/single_thread_proxy.h View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -3 lines 0 comments Download
M cc/trees/single_thread_proxy.cc View 1 2 3 4 5 6 7 8 9 3 chunks +10 lines, -9 lines 0 comments Download
M cc/trees/thread_proxy.h View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -1 line 0 comments Download
M cc/trees/thread_proxy.cc View 1 2 3 4 5 6 7 8 9 3 chunks +6 lines, -8 lines 0 comments Download
M cc/trees/tree_synchronizer_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +4 lines, -1 line 0 comments Download
M content/browser/renderer_host/compositor_impl_android.h View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -2 lines 0 comments Download
M content/browser/renderer_host/compositor_impl_android.cc View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +26 lines, -13 lines 2 comments Download
M content/renderer/gpu/render_widget_compositor.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -2 lines 0 comments Download
M content/renderer/gpu/render_widget_compositor.cc View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -3 lines 0 comments Download
M content/test/web_layer_tree_view_impl_for_testing.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -2 lines 0 comments Download
M content/test/web_layer_tree_view_impl_for_testing.cc View 1 2 3 4 5 6 7 8 9 1 chunk +4 lines, -4 lines 0 comments Download
M mojo/examples/compositor_app/compositor_host.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -2 lines 0 comments Download
M mojo/examples/compositor_app/compositor_host.cc View 1 2 3 4 5 6 7 8 9 1 chunk +3 lines, -5 lines 0 comments Download
M mojo/services/html_viewer/weblayertreeview_impl.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -2 lines 0 comments Download
M mojo/services/html_viewer/weblayertreeview_impl.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +2 lines, -3 lines 0 comments Download
M ui/compositor/compositor.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -2 lines 0 comments Download
M ui/compositor/compositor.cc View 1 2 3 4 5 6 7 8 9 1 chunk +3 lines, -2 lines 0 comments Download

Messages

Total messages: 29 (4 generated)
enne (OOO)
sievers: Is this something you think might solve what you were worried about with the ...
6 years, 6 months ago (2014-06-20 22:42:04 UTC) #1
danakj
You could put bug 276411 on this or block that on something to attach to ...
6 years, 6 months ago (2014-06-20 23:19:10 UTC) #2
danakj
https://codereview.chromium.org/348093004/diff/1/cc/test/fake_layer_tree_host.cc File cc/test/fake_layer_tree_host.cc (right): https://codereview.chromium.org/348093004/diff/1/cc/test/fake_layer_tree_host.cc#newcode8 cc/test/fake_layer_tree_host.cc:8: FakeLayerTreeHost::FakeLayerTreeHost(FakeLayerTreeHostClient* client, Maybe we should consider having FakeLayerTreeHost own ...
6 years, 6 months ago (2014-06-20 23:36:34 UTC) #3
enne (OOO)
https://codereview.chromium.org/348093004/diff/1/cc/test/fake_layer_tree_host.cc File cc/test/fake_layer_tree_host.cc (right): https://codereview.chromium.org/348093004/diff/1/cc/test/fake_layer_tree_host.cc#newcode8 cc/test/fake_layer_tree_host.cc:8: FakeLayerTreeHost::FakeLayerTreeHost(FakeLayerTreeHostClient* client, On 2014/06/20 23:36:34, danakj wrote: > Maybe ...
6 years, 6 months ago (2014-06-23 16:57:39 UTC) #4
no sievers
Thanks, yes this should do the trick. https://codereview.chromium.org/348093004/diff/1/cc/trees/layer_tree_host.cc File cc/trees/layer_tree_host.cc (right): https://codereview.chromium.org/348093004/diff/1/cc/trees/layer_tree_host.cc#newcode687 cc/trees/layer_tree_host.cc:687: if (output_surface_lost_) ...
6 years, 6 months ago (2014-06-23 19:53:58 UTC) #5
enne (OOO)
https://codereview.chromium.org/348093004/diff/1/cc/trees/layer_tree_host.cc File cc/trees/layer_tree_host.cc (right): https://codereview.chromium.org/348093004/diff/1/cc/trees/layer_tree_host.cc#newcode687 cc/trees/layer_tree_host.cc:687: if (output_surface_lost_) On 2014/06/23 19:53:58, sievers wrote: > nit: ...
6 years, 6 months ago (2014-06-24 22:20:06 UTC) #6
danakj
LGTM https://codereview.chromium.org/348093004/diff/1/cc/test/fake_layer_tree_host.cc File cc/test/fake_layer_tree_host.cc (right): https://codereview.chromium.org/348093004/diff/1/cc/test/fake_layer_tree_host.cc#newcode8 cc/test/fake_layer_tree_host.cc:8: FakeLayerTreeHost::FakeLayerTreeHost(FakeLayerTreeHostClient* client, On 2014/06/23 16:57:39, enne wrote: > ...
6 years, 6 months ago (2014-06-25 17:43:09 UTC) #7
enne (OOO)
Hmm, this patch seems to create some cc_unittest flakiness. I'll look into it. https://codereview.chromium.org/348093004/diff/40001/cc/trees/layer_tree_host.cc File ...
6 years, 6 months ago (2014-06-25 21:25:05 UTC) #8
danakj
https://codereview.chromium.org/348093004/diff/40001/cc/trees/proxy.h File cc/trees/proxy.h (right): https://codereview.chromium.org/348093004/diff/40001/cc/trees/proxy.h#newcode55 cc/trees/proxy.h:55: virtual void SetOutputSurface(scoped_ptr<OutputSurface>) = 0; On 2014/06/25 21:25:05, enne ...
6 years, 6 months ago (2014-06-25 21:25:50 UTC) #9
enne (OOO)
boliu: android_webview/ jamesr: mojo/
6 years, 4 months ago (2014-08-13 17:51:01 UTC) #10
jamesr
lgtm
6 years, 4 months ago (2014-08-13 17:52:52 UTC) #11
boliu
lgtm
6 years, 4 months ago (2014-08-13 17:57:04 UTC) #12
enne (OOO)
Finally rebased this patch from the past. It can land now that SingleThreadProxy+SchedulerClient has landed ...
6 years, 3 months ago (2014-09-24 23:27:50 UTC) #13
danakj
LGTM
6 years, 2 months ago (2014-09-25 16:50:21 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/348093004/220001
6 years, 2 months ago (2014-09-25 17:17:49 UTC) #16
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/13509)
6 years, 2 months ago (2014-09-25 17:27:17 UTC) #18
enne (OOO)
OWNERS approval needed: sievers: content/browser/renderer_host/ jcivelli: content/test/
6 years, 2 months ago (2014-09-25 17:38:02 UTC) #20
no sievers
android lgtm! https://codereview.chromium.org/348093004/diff/220001/content/browser/renderer_host/compositor_impl_android.cc File content/browser/renderer_host/compositor_impl_android.cc (right): https://codereview.chromium.org/348093004/diff/220001/content/browser/renderer_host/compositor_impl_android.cc#newcode301 content/browser/renderer_host/compositor_impl_android.cc:301: if (!factory->GetGpuChannel() || factory->GetGpuChannel()->IsLost()) { Can 301-308 ...
6 years, 2 months ago (2014-09-25 17:59:29 UTC) #21
Jay Civelli
LGTM for content/tests
6 years, 2 months ago (2014-09-25 18:20:19 UTC) #22
enne (OOO)
https://codereview.chromium.org/348093004/diff/220001/content/browser/renderer_host/compositor_impl_android.cc File content/browser/renderer_host/compositor_impl_android.cc (right): https://codereview.chromium.org/348093004/diff/220001/content/browser/renderer_host/compositor_impl_android.cc#newcode301 content/browser/renderer_host/compositor_impl_android.cc:301: if (!factory->GetGpuChannel() || factory->GetGpuChannel()->IsLost()) { On 2014/09/25 17:59:29, sievers ...
6 years, 2 months ago (2014-09-25 19:05:05 UTC) #23
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/348093004/220001
6 years, 2 months ago (2014-09-25 19:08:13 UTC) #25
no sievers
On 2014/09/25 19:05:05, enne wrote: > https://codereview.chromium.org/348093004/diff/220001/content/browser/renderer_host/compositor_impl_android.cc > File content/browser/renderer_host/compositor_impl_android.cc (right): > > https://codereview.chromium.org/348093004/diff/220001/content/browser/renderer_host/compositor_impl_android.cc#newcode301 > ...
6 years, 2 months ago (2014-09-25 19:21:33 UTC) #26
commit-bot: I haz the power
Committed patchset #12 (id:220001) as 66afc525101bf90b64604f90197edd896960d498
6 years, 2 months ago (2014-09-25 20:16:41 UTC) #27
commit-bot: I haz the power
Patchset 12 (id:??) landed as https://crrev.com/2097cab4982cc0ad92b878ad88e39d724dd047f7 Cr-Commit-Position: refs/heads/master@{#296780}
6 years, 2 months ago (2014-09-25 20:17:30 UTC) #28
kareng
6 years, 2 months ago (2014-09-26 20:22:15 UTC) #29
Message was sent while issue was closed.
A revert of this CL (patchset #12 id:220001) has been created in
https://codereview.chromium.org/606113003/ by kareng@google.com.

The reason for reverting is: possibly causing bug=418206 crash..

Powered by Google App Engine
This is Rietveld 408576698