| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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_IMPL_H_ | 5 #ifndef CC_TEST_FAKE_PICTURE_LAYER_IMPL_H_ |
| 6 #define CC_TEST_FAKE_PICTURE_LAYER_IMPL_H_ | 6 #define CC_TEST_FAKE_PICTURE_LAYER_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "cc/layers/picture_layer_impl.h" | 9 #include "cc/layers/picture_layer_impl.h" |
| 10 | 10 |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 void set_fixed_tile_size(const gfx::Size& size) { fixed_tile_size_ = size; } | 105 void set_fixed_tile_size(const gfx::Size& size) { fixed_tile_size_ = size; } |
| 106 | 106 |
| 107 void CreateDefaultTilingsAndTiles(); | 107 void CreateDefaultTilingsAndTiles(); |
| 108 void SetAllTilesVisible(); | 108 void SetAllTilesVisible(); |
| 109 void SetAllTilesReady(); | 109 void SetAllTilesReady(); |
| 110 void SetAllTilesReadyInTiling(PictureLayerTiling* tiling); | 110 void SetAllTilesReadyInTiling(PictureLayerTiling* tiling); |
| 111 void SetTileReady(Tile* tile); | 111 void SetTileReady(Tile* tile); |
| 112 void ResetAllTilesPriorities(); | 112 void ResetAllTilesPriorities(); |
| 113 PictureLayerTilingSet* GetTilings() { return tilings_.get(); } | 113 PictureLayerTilingSet* GetTilings() { return tilings_.get(); } |
| 114 | 114 |
| 115 size_t release_resources_count() const { return release_resources_count_; } | |
| 116 void reset_release_resources_count() { release_resources_count_ = 0; } | |
| 117 | |
| 118 virtual void ReleaseResources() OVERRIDE; | |
| 119 | |
| 120 protected: | 115 protected: |
| 121 FakePictureLayerImpl( | 116 FakePictureLayerImpl( |
| 122 LayerTreeImpl* tree_impl, | 117 LayerTreeImpl* tree_impl, |
| 123 int id, | 118 int id, |
| 124 scoped_refptr<PicturePileImpl> pile); | 119 scoped_refptr<PicturePileImpl> pile); |
| 125 FakePictureLayerImpl(LayerTreeImpl* tree_impl, | 120 FakePictureLayerImpl(LayerTreeImpl* tree_impl, |
| 126 int id, | 121 int id, |
| 127 scoped_refptr<PicturePileImpl> pile, | 122 scoped_refptr<PicturePileImpl> pile, |
| 128 const gfx::Size& layer_bounds); | 123 const gfx::Size& layer_bounds); |
| 129 FakePictureLayerImpl(LayerTreeImpl* tree_impl, int id); | 124 FakePictureLayerImpl(LayerTreeImpl* tree_impl, int id); |
| 130 | 125 |
| 131 private: | 126 private: |
| 132 gfx::Size fixed_tile_size_; | 127 gfx::Size fixed_tile_size_; |
| 133 | 128 |
| 134 size_t append_quads_count_; | 129 size_t append_quads_count_; |
| 135 size_t did_become_active_call_count_; | 130 size_t did_become_active_call_count_; |
| 136 bool has_valid_tile_priorities_; | 131 bool has_valid_tile_priorities_; |
| 137 bool use_set_valid_tile_priorities_flag_; | 132 bool use_set_valid_tile_priorities_flag_; |
| 138 size_t release_resources_count_; | |
| 139 }; | 133 }; |
| 140 | 134 |
| 141 } // namespace cc | 135 } // namespace cc |
| 142 | 136 |
| 143 #endif // CC_TEST_FAKE_PICTURE_LAYER_IMPL_H_ | 137 #endif // CC_TEST_FAKE_PICTURE_LAYER_IMPL_H_ |
| OLD | NEW |