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 #include "cc/layers/layer_impl.h" | 5 #include "cc/layers/layer_impl.h" |
6 | 6 |
7 #include "base/debug/trace_event.h" | 7 #include "base/debug/trace_event.h" |
8 #include "base/debug/trace_event_argument.h" | 8 #include "base/debug/trace_event_argument.h" |
9 #include "base/json/json_reader.h" | 9 #include "base/json/json_reader.h" |
10 #include "base/strings/stringprintf.h" | 10 #include "base/strings/stringprintf.h" |
11 #include "cc/animation/animation_registrar.h" | 11 #include "cc/animation/animation_registrar.h" |
12 #include "cc/animation/scrollbar_animation_controller.h" | 12 #include "cc/animation/scrollbar_animation_controller.h" |
13 #include "cc/base/math_util.h" | 13 #include "cc/base/math_util.h" |
14 #include "cc/base/simple_enclosed_region.h" | 14 #include "cc/base/simple_enclosed_region.h" |
15 #include "cc/debug/debug_colors.h" | 15 #include "cc/debug/debug_colors.h" |
16 #include "cc/debug/layer_tree_debug_state.h" | 16 #include "cc/debug/layer_tree_debug_state.h" |
17 #include "cc/debug/micro_benchmark_impl.h" | 17 #include "cc/debug/micro_benchmark_impl.h" |
18 #include "cc/debug/traced_value.h" | 18 #include "cc/debug/traced_value.h" |
19 #include "cc/input/layer_scroll_offset_delegate.h" | 19 #include "cc/input/layer_scroll_offset_delegate.h" |
20 #include "cc/layers/layer_utils.h" | 20 #include "cc/layers/layer_utils.h" |
21 #include "cc/layers/painted_scrollbar_layer_impl.h" | 21 #include "cc/layers/painted_scrollbar_layer_impl.h" |
22 #include "cc/output/copy_output_request.h" | 22 #include "cc/output/copy_output_request.h" |
23 #include "cc/quads/debug_border_draw_quad.h" | 23 #include "cc/quads/debug_border_draw_quad.h" |
24 #include "cc/quads/render_pass.h" | 24 #include "cc/quads/render_pass.h" |
25 #include "cc/quads/solid_color_draw_quad.h" | |
danakj
2014/09/10 18:40:50
not needed?
hendrikw
2014/09/11 00:27:40
Acknowledged.
| |
25 #include "cc/trees/layer_tree_host_common.h" | 26 #include "cc/trees/layer_tree_host_common.h" |
26 #include "cc/trees/layer_tree_impl.h" | 27 #include "cc/trees/layer_tree_impl.h" |
27 #include "cc/trees/layer_tree_settings.h" | 28 #include "cc/trees/layer_tree_settings.h" |
29 #include "cc/trees/occlusion_tracker.h" | |
danakj
2014/09/10 18:40:50
ditto
hendrikw
2014/09/11 00:27:40
Acknowledged.
| |
28 #include "cc/trees/proxy.h" | 30 #include "cc/trees/proxy.h" |
29 #include "ui/gfx/box_f.h" | 31 #include "ui/gfx/box_f.h" |
30 #include "ui/gfx/geometry/vector2d_conversions.h" | 32 #include "ui/gfx/geometry/vector2d_conversions.h" |
31 #include "ui/gfx/point_conversions.h" | 33 #include "ui/gfx/point_conversions.h" |
32 #include "ui/gfx/quad_f.h" | 34 #include "ui/gfx/quad_f.h" |
33 #include "ui/gfx/rect_conversions.h" | 35 #include "ui/gfx/rect_conversions.h" |
34 #include "ui/gfx/size_conversions.h" | 36 #include "ui/gfx/size_conversions.h" |
35 | 37 |
36 namespace cc { | 38 namespace cc { |
37 LayerImpl::LayerImpl(LayerTreeImpl* tree_impl, int id) | 39 LayerImpl::LayerImpl(LayerTreeImpl* tree_impl, int id) |
(...skipping 1500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1538 } | 1540 } |
1539 | 1541 |
1540 void LayerImpl::NotifyAnimationFinished( | 1542 void LayerImpl::NotifyAnimationFinished( |
1541 base::TimeTicks monotonic_time, | 1543 base::TimeTicks monotonic_time, |
1542 Animation::TargetProperty target_property) { | 1544 Animation::TargetProperty target_property) { |
1543 if (target_property == Animation::ScrollOffset) | 1545 if (target_property == Animation::ScrollOffset) |
1544 layer_tree_impl_->InputScrollAnimationFinished(); | 1546 layer_tree_impl_->InputScrollAnimationFinished(); |
1545 } | 1547 } |
1546 | 1548 |
1547 } // namespace cc | 1549 } // namespace cc |
OLD | NEW |