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

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: update cc 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
« no previous file with comments | « cc/gl_renderer.cc ('k') | cc/layer_tree_host_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/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
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
OLDNEW
« no previous file with comments | « cc/gl_renderer.cc ('k') | cc/layer_tree_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698