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_LAYERS_LAYER_IMPL_H_ | 5 #ifndef CC_LAYERS_LAYER_IMPL_H_ |
6 #define CC_LAYERS_LAYER_IMPL_H_ | 6 #define CC_LAYERS_LAYER_IMPL_H_ |
7 | 7 |
| 8 #include <stddef.h> |
| 9 #include <stdint.h> |
| 10 |
8 #include <map> | 11 #include <map> |
9 #include <set> | 12 #include <set> |
10 #include <string> | 13 #include <string> |
11 #include <vector> | 14 #include <vector> |
12 | 15 |
13 #include "base/logging.h" | 16 #include "base/logging.h" |
| 17 #include "base/macros.h" |
14 #include "base/memory/scoped_ptr.h" | 18 #include "base/memory/scoped_ptr.h" |
15 #include "base/values.h" | 19 #include "base/values.h" |
16 #include "cc/animation/animation_delegate.h" | 20 #include "cc/animation/animation_delegate.h" |
17 #include "cc/animation/layer_animation_controller.h" | 21 #include "cc/animation/layer_animation_controller.h" |
18 #include "cc/animation/layer_animation_value_observer.h" | 22 #include "cc/animation/layer_animation_value_observer.h" |
19 #include "cc/animation/layer_animation_value_provider.h" | 23 #include "cc/animation/layer_animation_value_provider.h" |
20 #include "cc/base/cc_export.h" | 24 #include "cc/base/cc_export.h" |
21 #include "cc/base/region.h" | 25 #include "cc/base/region.h" |
22 #include "cc/base/synced_property.h" | 26 #include "cc/base/synced_property.h" |
23 #include "cc/debug/frame_timing_request.h" | 27 #include "cc/debug/frame_timing_request.h" |
(...skipping 876 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
900 bool layer_or_descendant_has_input_handler_; | 904 bool layer_or_descendant_has_input_handler_; |
901 bool sorted_for_recursion_; | 905 bool sorted_for_recursion_; |
902 bool is_hidden_from_property_trees_; | 906 bool is_hidden_from_property_trees_; |
903 | 907 |
904 DISALLOW_COPY_AND_ASSIGN(LayerImpl); | 908 DISALLOW_COPY_AND_ASSIGN(LayerImpl); |
905 }; | 909 }; |
906 | 910 |
907 } // namespace cc | 911 } // namespace cc |
908 | 912 |
909 #endif // CC_LAYERS_LAYER_IMPL_H_ | 913 #endif // CC_LAYERS_LAYER_IMPL_H_ |
OLD | NEW |