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

Unified Diff: cc/test/fake_layer_tree_host_impl.cc

Issue 2452483002: Move GpuMemoryBufferManager and SharedBitmapManager to CompositorFrameSink (Closed)
Patch Set: rebase Created 4 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 7db83d492a562d7c7d6d17ff73bc4f90d6033c13..06ee5c88f9f0fe4a5bfa74aa8ce48313dc484da8 100644
--- a/cc/test/fake_layer_tree_host_impl.cc
+++ b/cc/test/fake_layer_tree_host_impl.cc
@@ -10,44 +10,25 @@
#include "cc/test/begin_frame_args_test.h"
#include "cc/test/fake_layer_tree_host_impl.h"
#include "cc/test/layer_tree_settings_for_testing.h"
-#include "cc/test/test_shared_bitmap_manager.h"
#include "cc/trees/layer_tree_impl.h"
namespace cc {
FakeLayerTreeHostImpl::FakeLayerTreeHostImpl(
TaskRunnerProvider* task_runner_provider,
- SharedBitmapManager* manager,
TaskGraphRunner* task_graph_runner)
: FakeLayerTreeHostImpl(LayerTreeSettingsForTesting(),
task_runner_provider,
- manager,
- task_graph_runner,
- nullptr) {}
+ task_graph_runner) {}
FakeLayerTreeHostImpl::FakeLayerTreeHostImpl(
const LayerTreeSettings& settings,
TaskRunnerProvider* task_runner_provider,
- SharedBitmapManager* manager,
TaskGraphRunner* task_graph_runner)
- : FakeLayerTreeHostImpl(settings,
- task_runner_provider,
- manager,
- task_graph_runner,
- nullptr) {}
-
-FakeLayerTreeHostImpl::FakeLayerTreeHostImpl(
- const LayerTreeSettings& settings,
- TaskRunnerProvider* task_runner_provider,
- SharedBitmapManager* manager,
- TaskGraphRunner* task_graph_runner,
- gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager)
: LayerTreeHostImpl(settings,
&client_,
task_runner_provider,
&stats_instrumentation_,
- manager,
- gpu_memory_buffer_manager,
task_graph_runner,
AnimationHost::CreateForTesting(ThreadInstance::IMPL),
0),
« 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