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/test/fake_painted_scrollbar_layer.h"
7 #include "base/auto_reset.h"
8 #include "cc/test/fake_scrollbar.h"
12 scoped_refptr
<FakePaintedScrollbarLayer
> FakePaintedScrollbarLayer::Create(
13 const LayerSettings
& settings
,
14 bool paint_during_update
,
16 int scrolling_layer_id
) {
17 FakeScrollbar
* fake_scrollbar
= new FakeScrollbar(
18 paint_during_update
, has_thumb
, false);
19 return make_scoped_refptr(new FakePaintedScrollbarLayer(
20 settings
, fake_scrollbar
, scrolling_layer_id
));
23 FakePaintedScrollbarLayer::FakePaintedScrollbarLayer(
24 const LayerSettings
& settings
,
25 FakeScrollbar
* fake_scrollbar
,
26 int scrolling_layer_id
)
27 : PaintedScrollbarLayer(settings
,
28 scoped_ptr
<Scrollbar
>(fake_scrollbar
).Pass(),
31 push_properties_count_(0),
32 fake_scrollbar_(fake_scrollbar
) {
33 SetBounds(gfx::Size(1, 1));
37 FakePaintedScrollbarLayer::~FakePaintedScrollbarLayer() {}
39 bool FakePaintedScrollbarLayer::Update() {
40 bool updated
= PaintedScrollbarLayer::Update();
45 void FakePaintedScrollbarLayer::PushPropertiesTo(LayerImpl
* layer
) {
46 PaintedScrollbarLayer::PushPropertiesTo(layer
);
47 ++push_properties_count_
;
50 scoped_ptr
<base::AutoReset
<bool>>
51 FakePaintedScrollbarLayer::IgnoreSetNeedsCommit() {
52 return make_scoped_ptr(
53 new base::AutoReset
<bool>(&ignore_set_needs_commit_
, true));