diff options
Diffstat (limited to 'cc/scrollbar_layer_impl.cc')
-rw-r--r-- | cc/scrollbar_layer_impl.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cc/scrollbar_layer_impl.cc b/cc/scrollbar_layer_impl.cc index db9fb4f..abe7d32 100644 --- a/cc/scrollbar_layer_impl.cc +++ b/cc/scrollbar_layer_impl.cc @@ -14,13 +14,13 @@ using WebKit::WebScrollbar; namespace cc { -scoped_ptr<ScrollbarLayerImpl> ScrollbarLayerImpl::create(LayerTreeHostImpl* hostImpl, int id) +scoped_ptr<ScrollbarLayerImpl> ScrollbarLayerImpl::create(LayerTreeImpl* treeImpl, int id) { - return make_scoped_ptr(new ScrollbarLayerImpl(hostImpl, id)); + return make_scoped_ptr(new ScrollbarLayerImpl(treeImpl, id)); } -ScrollbarLayerImpl::ScrollbarLayerImpl(LayerTreeHostImpl* hostImpl, int id) - : LayerImpl(hostImpl, id) +ScrollbarLayerImpl::ScrollbarLayerImpl(LayerTreeImpl* treeImpl, int id) + : LayerImpl(treeImpl, id) , m_scrollbar(this) , m_backTrackResourceId(0) , m_foreTrackResourceId(0) |