| 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_TILE_MANAGER_H_ | 5 #ifndef CC_RESOURCES_TILE_MANAGER_H_ |
| 6 #define CC_RESOURCES_TILE_MANAGER_H_ | 6 #define CC_RESOURCES_TILE_MANAGER_H_ |
| 7 | 7 |
| 8 #include <queue> | 8 #include <queue> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/hash_tables.h" | 12 #include "base/containers/hash_tables.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/values.h" | 14 #include "base/values.h" |
| 15 #include "cc/debug/rendering_stats_instrumentation.h" | 15 #include "cc/debug/rendering_stats_instrumentation.h" |
| 16 #include "cc/resources/memory_history.h" | 16 #include "cc/resources/memory_history.h" |
| 17 #include "cc/resources/picture_pile_impl.h" | 17 #include "cc/resources/picture_pile_impl.h" |
| 18 #include "cc/resources/raster_worker_pool.h" | 18 #include "cc/resources/raster_worker_pool.h" |
| 19 #include "cc/resources/resource_pool.h" | 19 #include "cc/resources/resource_pool.h" |
| 20 #include "cc/resources/tile_priority.h" | 20 #include "cc/resources/tile_priority.h" |
| 21 | 21 |
| 22 namespace cc { | 22 namespace cc { |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 | 209 |
| 210 bool use_color_estimator_; | 210 bool use_color_estimator_; |
| 211 bool did_initialize_visible_tile_; | 211 bool did_initialize_visible_tile_; |
| 212 | 212 |
| 213 DISALLOW_COPY_AND_ASSIGN(TileManager); | 213 DISALLOW_COPY_AND_ASSIGN(TileManager); |
| 214 }; | 214 }; |
| 215 | 215 |
| 216 } // namespace cc | 216 } // namespace cc |
| 217 | 217 |
| 218 #endif // CC_RESOURCES_TILE_MANAGER_H_ | 218 #endif // CC_RESOURCES_TILE_MANAGER_H_ |
| OLD | NEW |