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

Unified Diff: cc/test/fake_layer_tree_host_impl.cc

Issue 1411663002: cc: Split Proxy to eliminate unnecessary dependencies on the impl side (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update perf tests. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/test/fake_layer_tree_host_impl.h ('k') | cc/test/fake_ui_resource_layer_tree_host_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_layer_tree_host_impl.cc
diff --git a/cc/test/fake_layer_tree_host_impl.cc b/cc/test/fake_layer_tree_host_impl.cc
index e210a76e63c127b591df9eb4cb8d5c5adbf4b8cb..56a93cd48e4289a2b5068f1c5c90a2c8b0b38b0c 100644
--- a/cc/test/fake_layer_tree_host_impl.cc
+++ b/cc/test/fake_layer_tree_host_impl.cc
@@ -9,34 +9,36 @@
namespace cc {
-FakeLayerTreeHostImpl::FakeLayerTreeHostImpl(Proxy* proxy,
- SharedBitmapManager* manager,
- TaskGraphRunner* task_graph_runner)
+FakeLayerTreeHostImpl::FakeLayerTreeHostImpl(
+ TaskRunnerProvider* task_runner_provider,
+ SharedBitmapManager* manager,
+ TaskGraphRunner* task_graph_runner)
: FakeLayerTreeHostImpl(LayerTreeSettings(),
- proxy,
+ task_runner_provider,
manager,
task_graph_runner,
nullptr) {}
-FakeLayerTreeHostImpl::FakeLayerTreeHostImpl(const LayerTreeSettings& settings,
- Proxy* proxy,
- SharedBitmapManager* manager,
- TaskGraphRunner* task_graph_runner)
+FakeLayerTreeHostImpl::FakeLayerTreeHostImpl(
+ const LayerTreeSettings& settings,
+ TaskRunnerProvider* task_runner_provider,
+ SharedBitmapManager* manager,
+ TaskGraphRunner* task_graph_runner)
: FakeLayerTreeHostImpl(settings,
- proxy,
+ task_runner_provider,
manager,
task_graph_runner,
nullptr) {}
FakeLayerTreeHostImpl::FakeLayerTreeHostImpl(
const LayerTreeSettings& settings,
- Proxy* proxy,
+ TaskRunnerProvider* task_runner_provider,
SharedBitmapManager* manager,
TaskGraphRunner* task_graph_runner,
gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager)
: LayerTreeHostImpl(settings,
&client_,
- proxy,
+ task_runner_provider,
&stats_instrumentation_,
manager,
gpu_memory_buffer_manager,
« no previous file with comments | « cc/test/fake_layer_tree_host_impl.h ('k') | cc/test/fake_ui_resource_layer_tree_host_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698