| 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> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <list> |
| 10 #include <set> | 11 #include <set> |
| 11 #include <vector> | 12 #include <vector> |
| 12 | 13 |
| 13 #include "base/macros.h" | 14 #include "base/macros.h" |
| 14 #include "cc/base/region.h" | 15 #include "cc/base/region.h" |
| 15 #include "cc/tiles/picture_layer_tiling.h" | 16 #include "cc/tiles/picture_layer_tiling.h" |
| 16 #include "ui/gfx/geometry/size.h" | 17 #include "ui/gfx/geometry/size.h" |
| 17 | 18 |
| 18 namespace base { | 19 namespace base { |
| 19 namespace trace_event { | 20 namespace trace_event { |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 | 253 |
| 253 friend class Iterator; | 254 friend class Iterator; |
| 254 | 255 |
| 255 private: | 256 private: |
| 256 DISALLOW_COPY_AND_ASSIGN(PictureLayerTilingSet); | 257 DISALLOW_COPY_AND_ASSIGN(PictureLayerTilingSet); |
| 257 }; | 258 }; |
| 258 | 259 |
| 259 } // namespace cc | 260 } // namespace cc |
| 260 | 261 |
| 261 #endif // CC_TILES_PICTURE_LAYER_TILING_SET_H_ | 262 #endif // CC_TILES_PICTURE_LAYER_TILING_SET_H_ |
| OLD | NEW |