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/json/json_reader.h" | 8 #include "base/json/json_reader.h" |
9 #include "base/strings/stringprintf.h" | 9 #include "base/strings/stringprintf.h" |
10 #include "cc/animation/animation_registrar.h" | 10 #include "cc/animation/animation_registrar.h" |
11 #include "cc/animation/scrollbar_animation_controller.h" | 11 #include "cc/animation/scrollbar_animation_controller.h" |
12 #include "cc/base/math_util.h" | 12 #include "cc/base/math_util.h" |
13 #include "cc/debug/debug_colors.h" | 13 #include "cc/debug/debug_colors.h" |
14 #include "cc/debug/layer_tree_debug_state.h" | 14 #include "cc/debug/layer_tree_debug_state.h" |
15 #include "cc/debug/micro_benchmark_impl.h" | 15 #include "cc/debug/micro_benchmark_impl.h" |
16 #include "cc/debug/traced_value.h" | 16 #include "cc/debug/traced_value.h" |
17 #include "cc/input/layer_scroll_offset_delegate.h" | 17 #include "cc/input/layer_scroll_offset_delegate.h" |
18 #include "cc/layers/layer_utils.h" | 18 #include "cc/layers/layer_utils.h" |
19 #include "cc/layers/painted_scrollbar_layer_impl.h" | 19 #include "cc/layers/painted_scrollbar_layer_impl.h" |
20 #include "cc/output/copy_output_request.h" | 20 #include "cc/output/copy_output_request.h" |
21 #include "cc/quads/debug_border_draw_quad.h" | 21 #include "cc/quads/debug_border_draw_quad.h" |
22 #include "cc/trees/layer_tree_host_common.h" | 22 #include "cc/trees/layer_tree_host_common.h" |
23 #include "cc/trees/layer_tree_impl.h" | 23 #include "cc/trees/layer_tree_impl.h" |
24 #include "cc/trees/layer_tree_settings.h" | 24 #include "cc/trees/layer_tree_settings.h" |
25 #include "cc/trees/proxy.h" | 25 #include "cc/trees/proxy.h" |
26 #include "ui/gfx/box_f.h" | 26 #include "ui/gfx/geometry/box_f.h" |
| 27 #include "ui/gfx/geometry/quad_f.h" |
27 #include "ui/gfx/geometry/vector2d_conversions.h" | 28 #include "ui/gfx/geometry/vector2d_conversions.h" |
28 #include "ui/gfx/point_conversions.h" | 29 #include "ui/gfx/point_conversions.h" |
29 #include "ui/gfx/quad_f.h" | |
30 #include "ui/gfx/rect_conversions.h" | 30 #include "ui/gfx/rect_conversions.h" |
31 #include "ui/gfx/size_conversions.h" | 31 #include "ui/gfx/size_conversions.h" |
32 | 32 |
33 namespace cc { | 33 namespace cc { |
34 LayerImpl::LayerImpl(LayerTreeImpl* tree_impl, int id) | 34 LayerImpl::LayerImpl(LayerTreeImpl* tree_impl, int id) |
35 : parent_(NULL), | 35 : parent_(NULL), |
36 scroll_parent_(NULL), | 36 scroll_parent_(NULL), |
37 clip_parent_(NULL), | 37 clip_parent_(NULL), |
38 mask_layer_id_(-1), | 38 mask_layer_id_(-1), |
39 replica_layer_id_(-1), | 39 replica_layer_id_(-1), |
(...skipping 1456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1496 } | 1496 } |
1497 | 1497 |
1498 void LayerImpl::NotifyAnimationFinished( | 1498 void LayerImpl::NotifyAnimationFinished( |
1499 base::TimeTicks monotonic_time, | 1499 base::TimeTicks monotonic_time, |
1500 Animation::TargetProperty target_property) { | 1500 Animation::TargetProperty target_property) { |
1501 if (target_property == Animation::ScrollOffset) | 1501 if (target_property == Animation::ScrollOffset) |
1502 layer_tree_impl_->InputScrollAnimationFinished(); | 1502 layer_tree_impl_->InputScrollAnimationFinished(); |
1503 } | 1503 } |
1504 | 1504 |
1505 } // namespace cc | 1505 } // namespace cc |
OLD | NEW |