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_PICTURE_LAYER_TILING_SET_H_ | 5 #ifndef CC_PICTURE_LAYER_TILING_SET_H_ |
6 #define CC_PICTURE_LAYER_TILING_SET_H_ | 6 #define CC_PICTURE_LAYER_TILING_SET_H_ |
7 | 7 |
8 #include "cc/picture_layer_tiling.h" | 8 #include "cc/picture_layer_tiling.h" |
9 #include "cc/region.h" | 9 #include "cc/region.h" |
10 #include "cc/scoped_ptr_vector.h" | 10 #include "cc/scoped_ptr_vector.h" |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
99 | 99 |
100 Region current_region_; | 100 Region current_region_; |
101 Region missing_region_; | 101 Region missing_region_; |
102 Region::Iterator region_iter_; | 102 Region::Iterator region_iter_; |
103 }; | 103 }; |
104 | 104 |
105 private: | 105 private: |
106 PictureLayerTilingClient* client_; | 106 PictureLayerTilingClient* client_; |
107 gfx::Size layer_bounds_; | 107 gfx::Size layer_bounds_; |
108 ScopedPtrVector<PictureLayerTiling> tilings_; | 108 ScopedPtrVector<PictureLayerTiling> tilings_; |
109 Region invalidation_; | |
enne (OOO)
2013/01/17 23:34:55
Oops, thanks.
| |
110 | 109 |
111 friend class Iterator; | 110 friend class Iterator; |
112 }; | 111 }; |
113 | 112 |
114 } // namespace cc | 113 } // namespace cc |
115 | 114 |
116 #endif // CC_PICTURE_LAYER_TILING_SET_H_ | 115 #endif // CC_PICTURE_LAYER_TILING_SET_H_ |
OLD | NEW |