| 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(const LayerSettings& settings, | 11 FakePictureLayer::FakePictureLayer(ContentLayerClient* client) |
| 12 ContentLayerClient* client) | 12 : PictureLayer(client), |
| 13 : PictureLayer(settings, client), | |
| 14 update_count_(0), | 13 update_count_(0), |
| 15 push_properties_count_(0), | 14 push_properties_count_(0), |
| 16 always_update_resources_(false) { | 15 always_update_resources_(false) { |
| 17 SetBounds(gfx::Size(1, 1)); | 16 SetBounds(gfx::Size(1, 1)); |
| 18 SetIsDrawable(true); | 17 SetIsDrawable(true); |
| 19 } | 18 } |
| 20 | 19 |
| 21 FakePictureLayer::FakePictureLayer( | 20 FakePictureLayer::FakePictureLayer( |
| 22 const LayerSettings& settings, | |
| 23 ContentLayerClient* client, | 21 ContentLayerClient* client, |
| 24 scoped_ptr<DisplayListRecordingSource> source) | 22 scoped_ptr<DisplayListRecordingSource> source) |
| 25 : PictureLayer(settings, client, std::move(source)), | 23 : PictureLayer(client, std::move(source)), |
| 26 update_count_(0), | 24 update_count_(0), |
| 27 push_properties_count_(0), | 25 push_properties_count_(0), |
| 28 always_update_resources_(false) { | 26 always_update_resources_(false) { |
| 29 SetBounds(gfx::Size(1, 1)); | 27 SetBounds(gfx::Size(1, 1)); |
| 30 SetIsDrawable(true); | 28 SetIsDrawable(true); |
| 31 } | 29 } |
| 32 | 30 |
| 33 FakePictureLayer::~FakePictureLayer() {} | 31 FakePictureLayer::~FakePictureLayer() {} |
| 34 | 32 |
| 35 scoped_ptr<LayerImpl> FakePictureLayer::CreateLayerImpl( | 33 scoped_ptr<LayerImpl> FakePictureLayer::CreateLayerImpl( |
| 36 LayerTreeImpl* tree_impl) { | 34 LayerTreeImpl* tree_impl) { |
| 37 if (is_mask()) | 35 if (is_mask()) |
| 38 return FakePictureLayerImpl::CreateMask(tree_impl, layer_id_); | 36 return FakePictureLayerImpl::CreateMask(tree_impl, layer_id_); |
| 39 return FakePictureLayerImpl::Create(tree_impl, layer_id_); | 37 return FakePictureLayerImpl::Create(tree_impl, layer_id_); |
| 40 } | 38 } |
| 41 | 39 |
| 42 bool FakePictureLayer::Update() { | 40 bool FakePictureLayer::Update() { |
| 43 bool updated = PictureLayer::Update(); | 41 bool updated = PictureLayer::Update(); |
| 44 update_count_++; | 42 update_count_++; |
| 45 return updated || always_update_resources_; | 43 return updated || always_update_resources_; |
| 46 } | 44 } |
| 47 | 45 |
| 48 void FakePictureLayer::PushPropertiesTo(LayerImpl* layer) { | 46 void FakePictureLayer::PushPropertiesTo(LayerImpl* layer) { |
| 49 PictureLayer::PushPropertiesTo(layer); | 47 PictureLayer::PushPropertiesTo(layer); |
| 50 push_properties_count_++; | 48 push_properties_count_++; |
| 51 } | 49 } |
| 52 | 50 |
| 53 } // namespace cc | 51 } // namespace cc |
| OLD | NEW |