| 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_TILES_PICTURE_LAYER_TILING_SET_H_ | 5 #ifndef CC_TILES_PICTURE_LAYER_TILING_SET_H_ |
| 6 #define CC_TILES_PICTURE_LAYER_TILING_SET_H_ | 6 #define CC_TILES_PICTURE_LAYER_TILING_SET_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <set> | 10 #include <set> |
| 9 #include <vector> | 11 #include <vector> |
| 10 | 12 |
| 13 #include "base/macros.h" |
| 11 #include "cc/base/region.h" | 14 #include "cc/base/region.h" |
| 12 #include "cc/tiles/picture_layer_tiling.h" | 15 #include "cc/tiles/picture_layer_tiling.h" |
| 13 #include "ui/gfx/geometry/size.h" | 16 #include "ui/gfx/geometry/size.h" |
| 14 | 17 |
| 15 namespace base { | 18 namespace base { |
| 16 namespace trace_event { | 19 namespace trace_event { |
| 17 class TracedValue; | 20 class TracedValue; |
| 18 } | 21 } |
| 19 } | 22 } |
| 20 | 23 |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 WhichTree tree_; | 198 WhichTree tree_; |
| 196 PictureLayerTilingClient* client_; | 199 PictureLayerTilingClient* client_; |
| 197 | 200 |
| 198 friend class Iterator; | 201 friend class Iterator; |
| 199 DISALLOW_COPY_AND_ASSIGN(PictureLayerTilingSet); | 202 DISALLOW_COPY_AND_ASSIGN(PictureLayerTilingSet); |
| 200 }; | 203 }; |
| 201 | 204 |
| 202 } // namespace cc | 205 } // namespace cc |
| 203 | 206 |
| 204 #endif // CC_TILES_PICTURE_LAYER_TILING_SET_H_ | 207 #endif // CC_TILES_PICTURE_LAYER_TILING_SET_H_ |
| OLD | NEW |