Index: cc/layers/layer.cc |
diff --git a/cc/layers/layer.cc b/cc/layers/layer.cc |
index 707a37419bc524084d94e53d152acb8c1cb5941d..c6266d32bb42b30575ef5c7675a6bb68aac0c64e 100644 |
--- a/cc/layers/layer.cc |
+++ b/cc/layers/layer.cc |
@@ -15,7 +15,6 @@ |
#include "base/single_thread_task_runner.h" |
#include "base/time/time.h" |
#include "base/trace_event/trace_event.h" |
-#include "cc/animation/animation_host.h" |
#include "cc/animation/mutable_properties.h" |
#include "cc/base/simple_enclosed_region.h" |
#include "cc/debug/frame_viewer_instrumentation.h" |
@@ -34,6 +33,7 @@ |
#include "cc/trees/effect_node.h" |
#include "cc/trees/layer_tree_host.h" |
#include "cc/trees/layer_tree_impl.h" |
+#include "cc/trees/mutator_host.h" |
#include "cc/trees/transform_node.h" |
#include "third_party/skia/include/core/SkImageFilter.h" |
#include "ui/gfx/geometry/rect_conversions.h" |
@@ -1795,8 +1795,8 @@ void Layer::ClearPreferredRasterBounds() { |
SetNeedsCommit(); |
} |
-AnimationHost* Layer::GetMutatorHost() const { |
- return layer_tree_ ? layer_tree_->animation_host() : nullptr; |
+MutatorHost* Layer::GetMutatorHost() const { |
+ return layer_tree_ ? layer_tree_->mutator_host() : nullptr; |
} |
ElementListType Layer::GetElementTypeForAnimation() const { |