Chromium Code Reviews| 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 #ifndef CC_TEST_FAKE_PICTURE_LAYER_H_ | 5 #ifndef CC_TEST_FAKE_PICTURE_LAYER_H_ |
| 6 #define CC_TEST_FAKE_PICTURE_LAYER_H_ | 6 #define CC_TEST_FAKE_PICTURE_LAYER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 13 matching lines...) Expand all Loading... | |
| 24 ContentLayerClient* client, | 24 ContentLayerClient* client, |
| 25 std::unique_ptr<RecordingSource> source) { | 25 std::unique_ptr<RecordingSource> source) { |
| 26 return make_scoped_refptr(new FakePictureLayer(client, std::move(source))); | 26 return make_scoped_refptr(new FakePictureLayer(client, std::move(source))); |
| 27 } | 27 } |
| 28 | 28 |
| 29 std::unique_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override; | 29 std::unique_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override; |
| 30 | 30 |
| 31 int update_count() const { return update_count_; } | 31 int update_count() const { return update_count_; } |
| 32 void reset_update_count() { update_count_ = 0; } | 32 void reset_update_count() { update_count_ = 0; } |
| 33 | 33 |
| 34 size_t push_properties_count() const { return push_properties_count_; } | |
| 35 void reset_push_properties_count() { push_properties_count_ = 0; } | |
| 36 | |
| 37 void set_always_update_resources(bool always_update_resources) { | 34 void set_always_update_resources(bool always_update_resources) { |
| 38 always_update_resources_ = always_update_resources; | 35 always_update_resources_ = always_update_resources; |
| 39 } | 36 } |
| 40 | 37 |
| 41 bool Update() override; | 38 bool Update() override; |
|
Khushal
2016/10/26 01:08:02
Would be great if you could put the Layer override
xingliu
2016/10/26 17:56:40
Done.
| |
| 42 | 39 |
| 43 void PushPropertiesTo(LayerImpl* layer) override; | |
| 44 | |
| 45 void set_recorded_viewport(const gfx::Rect& recorded_viewport) { | |
| 46 picture_layer_inputs_.recorded_viewport = recorded_viewport; | |
| 47 } | |
| 48 | |
| 49 DisplayItemList* display_list() const { | |
|
Khushal
2016/10/26 01:08:02
Thanks for the cleanup. :)
| |
| 50 return picture_layer_inputs_.display_list.get(); | |
| 51 } | |
| 52 | |
| 53 void set_force_unsuitable_for_gpu_rasterization(bool flag) { | 40 void set_force_unsuitable_for_gpu_rasterization(bool flag) { |
| 54 force_unsuitable_for_gpu_rasterization_ = flag; | 41 force_unsuitable_for_gpu_rasterization_ = flag; |
| 55 } | 42 } |
| 56 | 43 |
| 57 bool IsSuitableForGpuRasterization() const override; | 44 bool IsSuitableForGpuRasterization() const override; |
| 58 | 45 |
| 59 private: | 46 private: |
| 60 explicit FakePictureLayer(ContentLayerClient* client); | 47 explicit FakePictureLayer(ContentLayerClient* client); |
| 61 FakePictureLayer(ContentLayerClient* client, | 48 FakePictureLayer(ContentLayerClient* client, |
| 62 std::unique_ptr<RecordingSource> source); | 49 std::unique_ptr<RecordingSource> source); |
| 63 ~FakePictureLayer() override; | 50 ~FakePictureLayer() override; |
| 64 | 51 |
| 52 void SetTypeForProtoSerialization(proto::LayerNode* proto) const override; | |
| 53 | |
| 65 int update_count_; | 54 int update_count_; |
| 66 size_t push_properties_count_; | |
| 67 bool always_update_resources_; | 55 bool always_update_resources_; |
| 68 | 56 |
| 69 bool force_unsuitable_for_gpu_rasterization_; | 57 bool force_unsuitable_for_gpu_rasterization_; |
| 70 }; | 58 }; |
| 71 | 59 |
| 72 } // namespace cc | 60 } // namespace cc |
| 73 | 61 |
| 74 #endif // CC_TEST_FAKE_PICTURE_LAYER_H_ | 62 #endif // CC_TEST_FAKE_PICTURE_LAYER_H_ |
| OLD | NEW |