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_RESOURCES_PICTURE_LAYER_TILING_H_ | 5 #ifndef CC_RESOURCES_PICTURE_LAYER_TILING_H_ |
6 #define CC_RESOURCES_PICTURE_LAYER_TILING_H_ | 6 #define CC_RESOURCES_PICTURE_LAYER_TILING_H_ |
7 | 7 |
8 #include <utility> | 8 #include <utility> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 gfx::Size layer_bounds_; | 161 gfx::Size layer_bounds_; |
162 gfx::Rect last_prioritized_rect_; | 162 gfx::Rect last_prioritized_rect_; |
163 // It is not legal to have a NULL tile in the tiles_ map. | 163 // It is not legal to have a NULL tile in the tiles_ map. |
164 TileMap tiles_; | 164 TileMap tiles_; |
165 TilingData tiling_data_; | 165 TilingData tiling_data_; |
166 TileResolution resolution_; | 166 TileResolution resolution_; |
167 int last_source_frame_number_; | 167 int last_source_frame_number_; |
168 double last_impl_frame_time_; | 168 double last_impl_frame_time_; |
169 | 169 |
170 friend class Iterator; | 170 friend class Iterator; |
| 171 |
| 172 private: |
| 173 DISALLOW_ASSIGN(PictureLayerTiling); |
171 }; | 174 }; |
172 | 175 |
173 } // namespace cc | 176 } // namespace cc |
174 | 177 |
175 #endif // CC_RESOURCES_PICTURE_LAYER_TILING_H_ | 178 #endif // CC_RESOURCES_PICTURE_LAYER_TILING_H_ |
OLD | NEW |