| 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_TILES_TILE_MANAGER_H_ |
| 6 #define CC_RESOURCES_TILE_MANAGER_H_ | 6 #define CC_TILES_TILE_MANAGER_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <queue> | 9 #include <queue> |
| 10 #include <set> | 10 #include <set> |
| 11 #include <utility> | 11 #include <utility> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/containers/hash_tables.h" | 14 #include "base/containers/hash_tables.h" |
| 15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 16 #include "base/values.h" | 16 #include "base/values.h" |
| 17 #include "cc/base/unique_notifier.h" | 17 #include "cc/base/unique_notifier.h" |
| 18 #include "cc/resources/eviction_tile_priority_queue.h" | 18 #include "cc/playback/raster_source.h" |
| 19 #include "cc/raster/tile_task_runner.h" |
| 19 #include "cc/resources/memory_history.h" | 20 #include "cc/resources/memory_history.h" |
| 20 #include "cc/resources/raster_source.h" | |
| 21 #include "cc/resources/raster_tile_priority_queue.h" | |
| 22 #include "cc/resources/resource_pool.h" | 21 #include "cc/resources/resource_pool.h" |
| 23 #include "cc/resources/tile.h" | 22 #include "cc/tiles/eviction_tile_priority_queue.h" |
| 24 #include "cc/resources/tile_draw_info.h" | 23 #include "cc/tiles/raster_tile_priority_queue.h" |
| 25 #include "cc/resources/tile_task_runner.h" | 24 #include "cc/tiles/tile.h" |
| 25 #include "cc/tiles/tile_draw_info.h" |
| 26 | 26 |
| 27 namespace base { | 27 namespace base { |
| 28 namespace trace_event { | 28 namespace trace_event { |
| 29 class ConvertableToTraceFormat; | 29 class ConvertableToTraceFormat; |
| 30 class TracedValue; | 30 class TracedValue; |
| 31 } | 31 } |
| 32 } | 32 } |
| 33 | 33 |
| 34 namespace cc { | 34 namespace cc { |
| 35 class PictureLayerImpl; | 35 class PictureLayerImpl; |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 UniqueNotifier more_tiles_need_prepare_check_notifier_; | 305 UniqueNotifier more_tiles_need_prepare_check_notifier_; |
| 306 | 306 |
| 307 bool did_notify_ready_to_activate_; | 307 bool did_notify_ready_to_activate_; |
| 308 bool did_notify_ready_to_draw_; | 308 bool did_notify_ready_to_draw_; |
| 309 | 309 |
| 310 DISALLOW_COPY_AND_ASSIGN(TileManager); | 310 DISALLOW_COPY_AND_ASSIGN(TileManager); |
| 311 }; | 311 }; |
| 312 | 312 |
| 313 } // namespace cc | 313 } // namespace cc |
| 314 | 314 |
| 315 #endif // CC_RESOURCES_TILE_MANAGER_H_ | 315 #endif // CC_TILES_TILE_MANAGER_H_ |
| OLD | NEW |