| 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/geometry.h" | |
| 11 #include "cc/layer_sorter.h" | 10 #include "cc/layer_sorter.h" |
| 12 #include "cc/math_util.h" | 11 #include "cc/math_util.h" |
| 13 #include "cc/proxy.h" | 12 #include "cc/proxy.h" |
| 14 #include "cc/quad_sink.h" | 13 #include "cc/quad_sink.h" |
| 15 #include "cc/scrollbar_animation_controller.h" | 14 #include "cc/scrollbar_animation_controller.h" |
| 16 #include "cc/settings.h" | 15 #include "cc/settings.h" |
| 17 #include "third_party/skia/include/core/SkImageFilter.h" | 16 #include "third_party/skia/include/core/SkImageFilter.h" |
| 18 #include "ui/gfx/point_conversions.h" | 17 #include "ui/gfx/point_conversions.h" |
| 19 #include "ui/gfx/rect_conversions.h" | 18 #include "ui/gfx/rect_conversions.h" |
| 20 | 19 |
| (...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 705 | 704 |
| 706 void LayerImpl::setVerticalScrollbarLayer(ScrollbarLayerImpl* scrollbarLayer) | 705 void LayerImpl::setVerticalScrollbarLayer(ScrollbarLayerImpl* scrollbarLayer) |
| 707 { | 706 { |
| 708 if (!m_scrollbarAnimationController) | 707 if (!m_scrollbarAnimationController) |
| 709 m_scrollbarAnimationController = ScrollbarAnimationController::create(th
is); | 708 m_scrollbarAnimationController = ScrollbarAnimationController::create(th
is); |
| 710 m_scrollbarAnimationController->setVerticalScrollbarLayer(scrollbarLayer); | 709 m_scrollbarAnimationController->setVerticalScrollbarLayer(scrollbarLayer); |
| 711 m_scrollbarAnimationController->updateScrollOffset(this); | 710 m_scrollbarAnimationController->updateScrollOffset(this); |
| 712 } | 711 } |
| 713 | 712 |
| 714 } // namespace cc | 713 } // namespace cc |
| OLD | NEW |