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

Unified Diff: cc/test/layer_tree_host_remote_for_testing.h

Issue 2480203002: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Sync CL to position 430550 Created 4 years, 1 month 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/layer_test_common.cc ('k') | cc/test/layer_tree_host_remote_for_testing.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/layer_tree_host_remote_for_testing.h
diff --git a/cc/test/layer_tree_host_remote_for_testing.h b/cc/test/layer_tree_host_remote_for_testing.h
index 1d786861b875c8153df330d049c0f409a09af65d..f134cf442d7b77f45691c9a47cd70078456d54b7 100644
--- a/cc/test/layer_tree_host_remote_for_testing.h
+++ b/cc/test/layer_tree_host_remote_for_testing.h
@@ -14,8 +14,11 @@ class GpuMemoryBufferManager;
} // namespace gpu
namespace cc {
+
+class AnimationHost;
class FakeImageSerializationProcessor;
class LayerTreeHostInProcess;
+class MutatorHost;
class SharedBitmapManager;
class TaskGraphRunner;
@@ -27,7 +30,7 @@ class LayerTreeHostRemoteForTesting : public LayerTreeHostRemote,
public:
static std::unique_ptr<LayerTreeHostRemoteForTesting> Create(
LayerTreeHostClient* client,
- std::unique_ptr<AnimationHost> animation_host,
+ MutatorHost* mutator_host,
LayerTreeSettings const* settings,
TaskGraphRunner* task_graph_runner,
scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
@@ -66,7 +69,8 @@ class LayerTreeHostRemoteForTesting : public LayerTreeHostRemote,
TaskGraphRunner* task_graph_runner,
const LayerTreeSettings& settings,
scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
- scoped_refptr<base::SingleThreadTaskRunner> impl_task_runner);
+ scoped_refptr<base::SingleThreadTaskRunner> impl_task_runner,
+ MutatorHost* mutator_host);
private:
class LayerTreeHostInProcessClient;
@@ -85,6 +89,7 @@ class LayerTreeHostRemoteForTesting : public LayerTreeHostRemote,
std::unique_ptr<CompositorProtoState> compositor_proto_state);
std::unique_ptr<LayerTreeHostInProcess> layer_tree_host_in_process_;
+ std::unique_ptr<AnimationHost> animation_host_;
std::unique_ptr<CompositorStateDeserializer> compositor_state_deserializer_;
bool client_state_dirty_ = false;
« no previous file with comments | « cc/test/layer_test_common.cc ('k') | cc/test/layer_tree_host_remote_for_testing.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698