1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "cc/layers/solid_color_scrollbar_layer.h"
7 #include "base/memory/scoped_ptr.h"
8 #include "cc/layers/layer_impl.h"
9 #include "cc/layers/solid_color_scrollbar_layer_impl.h"
13 scoped_ptr
<LayerImpl
> SolidColorScrollbarLayer::CreateLayerImpl(
14 LayerTreeImpl
* tree_impl
) {
15 const bool kIsOverlayScrollbar
= true;
16 return SolidColorScrollbarLayerImpl::Create(tree_impl
,
21 is_left_side_vertical_scrollbar_
,
25 scoped_refptr
<SolidColorScrollbarLayer
> SolidColorScrollbarLayer::Create(
26 ScrollbarOrientation orientation
,
29 bool is_left_side_vertical_scrollbar
,
30 int scroll_layer_id
) {
31 return make_scoped_refptr(
32 new SolidColorScrollbarLayer(orientation
,
35 is_left_side_vertical_scrollbar
,
39 SolidColorScrollbarLayer::SolidColorScrollbarLayer(
40 ScrollbarOrientation orientation
,
43 bool is_left_side_vertical_scrollbar
,
45 : scroll_layer_id_(Layer::INVALID_ID
),
46 clip_layer_id_(scroll_layer_id
),
47 orientation_(orientation
),
48 thumb_thickness_(thumb_thickness
),
49 track_start_(track_start
),
50 is_left_side_vertical_scrollbar_(is_left_side_vertical_scrollbar
) {}
52 SolidColorScrollbarLayer::~SolidColorScrollbarLayer() {}
54 ScrollbarLayerInterface
* SolidColorScrollbarLayer::ToScrollbarLayer() {
58 void SolidColorScrollbarLayer::PushPropertiesTo(LayerImpl
* layer
) {
59 Layer::PushPropertiesTo(layer
);
60 PushScrollClipPropertiesTo(layer
);
63 void SolidColorScrollbarLayer::PushScrollClipPropertiesTo(LayerImpl
* layer
) {
64 SolidColorScrollbarLayerImpl
* scrollbar_layer
=
65 static_cast<SolidColorScrollbarLayerImpl
*>(layer
);
67 scrollbar_layer
->SetScrollLayerAndClipLayerByIds(scroll_layer_id_
,
71 void SolidColorScrollbarLayer::SetNeedsDisplayRect(const gfx::Rect
& rect
) {
72 // Never needs repaint.
75 bool SolidColorScrollbarLayer::OpacityCanAnimateOnImplThread() const {
79 int SolidColorScrollbarLayer::ScrollLayerId() const {
80 return scroll_layer_id_
;
83 void SolidColorScrollbarLayer::SetScrollLayer(int layer_id
) {
84 if (layer_id
== scroll_layer_id_
)
87 scroll_layer_id_
= layer_id
;
88 SetNeedsFullTreeSync();
91 void SolidColorScrollbarLayer::SetClipLayer(int layer_id
) {
92 if (layer_id
== clip_layer_id_
)
95 clip_layer_id_
= layer_id
;
96 SetNeedsFullTreeSync();
99 ScrollbarOrientation
SolidColorScrollbarLayer::orientation() const {