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 #include "cc/layer_impl.h" | 5 #include "cc/layer_impl.h" |
6 | 6 |
7 #include "base/debug/trace_event.h" | 7 #include "base/debug/trace_event.h" |
8 #include "base/stringprintf.h" | 8 #include "base/stringprintf.h" |
9 #include "cc/debug_border_draw_quad.h" | 9 #include "cc/debug_border_draw_quad.h" |
10 #include "cc/debug_colors.h" | 10 #include "cc/debug_colors.h" |
11 #include "cc/geometry.h" | |
12 #include "cc/layer_sorter.h" | 11 #include "cc/layer_sorter.h" |
13 #include "cc/layer_tree_host_impl.h" | 12 #include "cc/layer_tree_host_impl.h" |
14 #include "cc/math_util.h" | 13 #include "cc/math_util.h" |
15 #include "cc/proxy.h" | 14 #include "cc/proxy.h" |
16 #include "cc/quad_sink.h" | 15 #include "cc/quad_sink.h" |
17 #include "cc/scrollbar_animation_controller.h" | 16 #include "cc/scrollbar_animation_controller.h" |
18 #include "third_party/skia/include/core/SkImageFilter.h" | 17 #include "third_party/skia/include/core/SkImageFilter.h" |
19 #include "ui/gfx/point_conversions.h" | 18 #include "ui/gfx/point_conversions.h" |
20 #include "ui/gfx/rect_conversions.h" | 19 #include "ui/gfx/rect_conversions.h" |
21 | 20 |
(...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
710 | 709 |
711 void LayerImpl::setVerticalScrollbarLayer(ScrollbarLayerImpl* scrollbarLayer) | 710 void LayerImpl::setVerticalScrollbarLayer(ScrollbarLayerImpl* scrollbarLayer) |
712 { | 711 { |
713 if (!m_scrollbarAnimationController) | 712 if (!m_scrollbarAnimationController) |
714 m_scrollbarAnimationController = ScrollbarAnimationController::create(th
is); | 713 m_scrollbarAnimationController = ScrollbarAnimationController::create(th
is); |
715 m_scrollbarAnimationController->setVerticalScrollbarLayer(scrollbarLayer); | 714 m_scrollbarAnimationController->setVerticalScrollbarLayer(scrollbarLayer); |
716 m_scrollbarAnimationController->updateScrollOffset(this); | 715 m_scrollbarAnimationController->updateScrollOffset(this); |
717 } | 716 } |
718 | 717 |
719 } // namespace cc | 718 } // namespace cc |
OLD | NEW |