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_H_ | 5 #ifndef CC_TILES_PICTURE_LAYER_TILING_H_ |
6 #define CC_TILES_PICTURE_LAYER_TILING_H_ | 6 #define CC_TILES_PICTURE_LAYER_TILING_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
11 #include <map> | 11 #include <map> |
12 #include <memory> | 12 #include <memory> |
13 #include <unordered_map> | 13 #include <unordered_map> |
14 #include <utility> | 14 #include <utility> |
15 #include <vector> | 15 #include <vector> |
16 | 16 |
17 #include "base/macros.h" | 17 #include "base/macros.h" |
18 #include "cc/base/cc_export.h" | |
19 #include "cc/base/region.h" | 18 #include "cc/base/region.h" |
20 #include "cc/base/tiling_data.h" | 19 #include "cc/base/tiling_data.h" |
| 20 #include "cc/cc_export.h" |
21 #include "cc/tiles/tile.h" | 21 #include "cc/tiles/tile.h" |
22 #include "cc/tiles/tile_priority.h" | 22 #include "cc/tiles/tile_priority.h" |
23 #include "cc/trees/occlusion.h" | 23 #include "cc/trees/occlusion.h" |
24 #include "ui/gfx/geometry/rect.h" | 24 #include "ui/gfx/geometry/rect.h" |
25 | 25 |
26 namespace base { | 26 namespace base { |
27 namespace trace_event { | 27 namespace trace_event { |
28 class TracedValue; | 28 class TracedValue; |
29 } | 29 } |
30 } | 30 } |
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 bool has_eventually_rect_tiles_ = false; | 363 bool has_eventually_rect_tiles_ = false; |
364 bool all_tiles_done_ = true; | 364 bool all_tiles_done_ = true; |
365 | 365 |
366 private: | 366 private: |
367 DISALLOW_COPY_AND_ASSIGN(PictureLayerTiling); | 367 DISALLOW_COPY_AND_ASSIGN(PictureLayerTiling); |
368 }; | 368 }; |
369 | 369 |
370 } // namespace cc | 370 } // namespace cc |
371 | 371 |
372 #endif // CC_TILES_PICTURE_LAYER_TILING_H_ | 372 #endif // CC_TILES_PICTURE_LAYER_TILING_H_ |
OLD | NEW |