summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/platform/graphics/CompositorMutableStateProvider.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/WebKit/Source/platform/graphics/CompositorMutableStateProvider.cpp')
-rw-r--r--third_party/WebKit/Source/platform/graphics/CompositorMutableStateProvider.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/third_party/WebKit/Source/platform/graphics/CompositorMutableStateProvider.cpp b/third_party/WebKit/Source/platform/graphics/CompositorMutableStateProvider.cpp
index cb2d9b1..e9eedb7 100644
--- a/third_party/WebKit/Source/platform/graphics/CompositorMutableStateProvider.cpp
+++ b/third_party/WebKit/Source/platform/graphics/CompositorMutableStateProvider.cpp
@@ -5,14 +5,14 @@
#include "platform/graphics/CompositorMutableStateProvider.h"
#include "cc/layers/layer_impl.h"
-#include "cc/trees/layer_tree_impl.h"
+#include "cc/layers/layer_list_impl.h"
#include "platform/graphics/CompositorMutableState.h"
#include "platform/graphics/CompositorMutation.h"
#include "wtf/PassOwnPtr.h"
namespace blink {
-CompositorMutableStateProvider::CompositorMutableStateProvider(cc::LayerTreeImpl* state, CompositorMutations* mutations)
+CompositorMutableStateProvider::CompositorMutableStateProvider(cc::LayerListImpl* state, CompositorMutations* mutations)
: m_state(state)
, m_mutations(mutations)
{
@@ -23,7 +23,7 @@ CompositorMutableStateProvider::~CompositorMutableStateProvider() {}
PassOwnPtr<CompositorMutableState>
CompositorMutableStateProvider::getMutableStateFor(uint64_t element_id)
{
- cc::LayerTreeImpl::ElementLayers layers = m_state->GetMutableLayers(element_id);
+ cc::LayerListImpl::ElementLayers layers = m_state->GetMutableLayers(element_id);
if (!layers.main && !layers.scroll)
return nullptr;