OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "cc/test/fake_picture_layer.h" | 5 #include "cc/test/fake_picture_layer.h" |
6 | 6 |
7 #include "cc/test/fake_picture_layer_impl.h" | 7 #include "cc/test/fake_picture_layer_impl.h" |
8 | 8 |
9 namespace cc { | 9 namespace cc { |
10 | 10 |
11 FakePictureLayer::FakePictureLayer(ContentLayerClient* client) | 11 FakePictureLayer::FakePictureLayer(ContentLayerClient* client) |
12 : PictureLayer(client), | 12 : PictureLayer(client), |
13 update_count_(0), | 13 update_count_(0), |
14 push_properties_count_(0), | 14 push_properties_count_(0), |
| 15 renderer_capabilities_changed_count_(0), |
15 always_update_resources_(false) { | 16 always_update_resources_(false) { |
16 SetAnchorPoint(gfx::PointF(0.f, 0.f)); | 17 SetAnchorPoint(gfx::PointF(0.f, 0.f)); |
17 SetBounds(gfx::Size(1, 1)); | 18 SetBounds(gfx::Size(1, 1)); |
18 SetIsDrawable(true); | 19 SetIsDrawable(true); |
19 } | 20 } |
20 | 21 |
21 FakePictureLayer::~FakePictureLayer() {} | 22 FakePictureLayer::~FakePictureLayer() {} |
22 | 23 |
23 scoped_ptr<LayerImpl> FakePictureLayer::CreateLayerImpl( | 24 scoped_ptr<LayerImpl> FakePictureLayer::CreateLayerImpl( |
24 LayerTreeImpl* tree_impl) { | 25 LayerTreeImpl* tree_impl) { |
25 return FakePictureLayerImpl::Create(tree_impl, layer_id_).PassAs<LayerImpl>(); | 26 return FakePictureLayerImpl::Create(tree_impl, layer_id_).PassAs<LayerImpl>(); |
26 } | 27 } |
27 | 28 |
28 bool FakePictureLayer::Update(ResourceUpdateQueue* queue, | 29 bool FakePictureLayer::Update(ResourceUpdateQueue* queue, |
29 const OcclusionTracker* occlusion) { | 30 const OcclusionTracker* occlusion) { |
30 bool updated = PictureLayer::Update(queue, occlusion); | 31 bool updated = PictureLayer::Update(queue, occlusion); |
31 update_count_++; | 32 update_count_++; |
32 return updated || always_update_resources_; | 33 return updated || always_update_resources_; |
33 } | 34 } |
34 | 35 |
35 void FakePictureLayer::PushPropertiesTo(LayerImpl* layer) { | 36 void FakePictureLayer::PushPropertiesTo(LayerImpl* layer) { |
36 PictureLayer::PushPropertiesTo(layer); | 37 PictureLayer::PushPropertiesTo(layer); |
37 push_properties_count_++; | 38 push_properties_count_++; |
38 } | 39 } |
39 | 40 |
| 41 void FakePictureLayer::OnOutputSurfaceCreated() { |
| 42 PictureLayer::OnOutputSurfaceCreated(); |
| 43 renderer_capabilities_changed_count_++; |
| 44 } |
| 45 |
40 | 46 |
41 } // namespace cc | 47 } // namespace cc |
OLD | NEW |