OLD | NEW |
1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 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_TREES_LAYER_TREE_HOST_H_ | 5 #ifndef CC_TREES_LAYER_TREE_HOST_H_ |
6 #define CC_TREES_LAYER_TREE_HOST_H_ | 6 #define CC_TREES_LAYER_TREE_HOST_H_ |
7 | 7 |
| 8 #include <stddef.h> |
| 9 #include <stdint.h> |
| 10 |
8 #include <limits> | 11 #include <limits> |
9 #include <set> | 12 #include <set> |
10 #include <string> | 13 #include <string> |
11 #include <vector> | 14 #include <vector> |
12 | 15 |
13 #include "base/basictypes.h" | |
14 #include "base/cancelable_callback.h" | 16 #include "base/cancelable_callback.h" |
15 #include "base/containers/hash_tables.h" | 17 #include "base/containers/hash_tables.h" |
| 18 #include "base/macros.h" |
16 #include "base/memory/ref_counted.h" | 19 #include "base/memory/ref_counted.h" |
17 #include "base/memory/scoped_ptr.h" | 20 #include "base/memory/scoped_ptr.h" |
18 #include "base/memory/weak_ptr.h" | 21 #include "base/memory/weak_ptr.h" |
19 #include "base/time/time.h" | 22 #include "base/time/time.h" |
20 #include "cc/animation/animation_events.h" | 23 #include "cc/animation/animation_events.h" |
21 #include "cc/base/cc_export.h" | 24 #include "cc/base/cc_export.h" |
22 #include "cc/debug/frame_timing_tracker.h" | 25 #include "cc/debug/frame_timing_tracker.h" |
23 #include "cc/debug/micro_benchmark.h" | 26 #include "cc/debug/micro_benchmark.h" |
24 #include "cc/debug/micro_benchmark_controller.h" | 27 #include "cc/debug/micro_benchmark_controller.h" |
25 #include "cc/input/input_handler.h" | 28 #include "cc/input/input_handler.h" |
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
517 | 520 |
518 uint32_t surface_id_namespace_; | 521 uint32_t surface_id_namespace_; |
519 uint32_t next_surface_sequence_; | 522 uint32_t next_surface_sequence_; |
520 | 523 |
521 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); | 524 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); |
522 }; | 525 }; |
523 | 526 |
524 } // namespace cc | 527 } // namespace cc |
525 | 528 |
526 #endif // CC_TREES_LAYER_TREE_HOST_H_ | 529 #endif // CC_TREES_LAYER_TREE_HOST_H_ |
OLD | NEW |