Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Side by Side Diff: cc/layer_impl.cc

Issue 11358240: ui: Add methods to Rect classes to get points at each of the rect's corners. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW
« no previous file with comments | « cc/geometry.h ('k') | cc/layer_tree_host_impl.cc » ('j') | ui/gfx/rect_base.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698