OLD | NEW |
1 // Copyright 2010 The Chromium Authors. All rights reserved. | 1 // Copyright 2010 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_H_ | 5 #ifndef CC_LAYERS_LAYER_H_ |
6 #define CC_LAYERS_LAYER_H_ | 6 #define CC_LAYERS_LAYER_H_ |
7 | 7 |
| 8 #include <stddef.h> |
| 9 #include <stdint.h> |
| 10 |
8 #include <set> | 11 #include <set> |
9 #include <string> | 12 #include <string> |
10 #include <vector> | 13 #include <vector> |
11 | 14 |
12 #include "base/callback.h" | 15 #include "base/callback.h" |
| 16 #include "base/macros.h" |
13 #include "base/memory/ref_counted.h" | 17 #include "base/memory/ref_counted.h" |
14 #include "base/observer_list.h" | 18 #include "base/observer_list.h" |
15 #include "cc/animation/layer_animation_controller.h" | 19 #include "cc/animation/layer_animation_controller.h" |
16 #include "cc/animation/layer_animation_value_observer.h" | 20 #include "cc/animation/layer_animation_value_observer.h" |
17 #include "cc/animation/layer_animation_value_provider.h" | 21 #include "cc/animation/layer_animation_value_provider.h" |
18 #include "cc/base/cc_export.h" | 22 #include "cc/base/cc_export.h" |
19 #include "cc/base/region.h" | 23 #include "cc/base/region.h" |
20 #include "cc/debug/frame_timing_request.h" | 24 #include "cc/debug/frame_timing_request.h" |
21 #include "cc/debug/micro_benchmark.h" | 25 #include "cc/debug/micro_benchmark.h" |
22 #include "cc/layers/layer_lists.h" | 26 #include "cc/layers/layer_lists.h" |
(...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
796 std::vector<FrameTimingRequest> frame_timing_requests_; | 800 std::vector<FrameTimingRequest> frame_timing_requests_; |
797 bool frame_timing_requests_dirty_; | 801 bool frame_timing_requests_dirty_; |
798 bool is_hidden_from_property_trees_; | 802 bool is_hidden_from_property_trees_; |
799 | 803 |
800 DISALLOW_COPY_AND_ASSIGN(Layer); | 804 DISALLOW_COPY_AND_ASSIGN(Layer); |
801 }; | 805 }; |
802 | 806 |
803 } // namespace cc | 807 } // namespace cc |
804 | 808 |
805 #endif // CC_LAYERS_LAYER_H_ | 809 #endif // CC_LAYERS_LAYER_H_ |
OLD | NEW |