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_TILE_MANAGER_H_ | 5 #ifndef CC_TILES_TILE_MANAGER_H_ |
6 #define CC_TILES_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> |
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 UniqueNotifier ready_to_activate_check_notifier_; | 314 UniqueNotifier ready_to_activate_check_notifier_; |
315 UniqueNotifier ready_to_draw_check_notifier_; | 315 UniqueNotifier ready_to_draw_check_notifier_; |
316 UniqueNotifier all_tile_tasks_completed_check_notifier_; | 316 UniqueNotifier all_tile_tasks_completed_check_notifier_; |
317 UniqueNotifier more_tiles_need_prepare_check_notifier_; | 317 UniqueNotifier more_tiles_need_prepare_check_notifier_; |
318 | 318 |
319 bool did_notify_ready_to_activate_; | 319 bool did_notify_ready_to_activate_; |
320 bool did_notify_ready_to_draw_; | 320 bool did_notify_ready_to_draw_; |
321 bool did_notify_all_tile_tasks_completed_; | 321 bool did_notify_all_tile_tasks_completed_; |
322 bool has_scheduled_tile_tasks_; | 322 bool has_scheduled_tile_tasks_; |
323 | 323 |
| 324 uint64_t prepare_tiles_count_; |
| 325 |
324 DISALLOW_COPY_AND_ASSIGN(TileManager); | 326 DISALLOW_COPY_AND_ASSIGN(TileManager); |
325 }; | 327 }; |
326 | 328 |
327 } // namespace cc | 329 } // namespace cc |
328 | 330 |
329 #endif // CC_TILES_TILE_MANAGER_H_ | 331 #endif // CC_TILES_TILE_MANAGER_H_ |
OLD | NEW |