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

Side by Side Diff: Source/core/rendering/RenderLayerScrollableArea.h

Issue 246783004: Revert of Recompute overflow after transform changes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Local revert Created 6 years, 8 months 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 /* 1 /*
2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved.
3 * 3 *
4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation.
5 * 5 *
6 * Other contributors: 6 * Other contributors:
7 * Robert O'Callahan <roc+@cs.cmu.edu> 7 * Robert O'Callahan <roc+@cs.cmu.edu>
8 * David Baron <dbaron@fas.harvard.edu> 8 * David Baron <dbaron@fas.harvard.edu>
9 * Christian Biesinger <cbiesinger@web.de> 9 * Christian Biesinger <cbiesinger@web.de>
10 * Randall Jesup <rjesup@wgate.com> 10 * Randall Jesup <rjesup@wgate.com>
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 116
117 // FIXME: We shouldn't allow access to m_overflowRect outside this class. 117 // FIXME: We shouldn't allow access to m_overflowRect outside this class.
118 LayoutRect overflowRect() const { return m_overflowRect; } 118 LayoutRect overflowRect() const { return m_overflowRect; }
119 119
120 void scrollToOffset(const IntSize& scrollOffset, ScrollOffsetClamping = Scro llOffsetUnclamped); 120 void scrollToOffset(const IntSize& scrollOffset, ScrollOffsetClamping = Scro llOffsetUnclamped);
121 void scrollToXOffset(int x, ScrollOffsetClamping clamp = ScrollOffsetUnclamp ed) { scrollToOffset(IntSize(x, scrollYOffset()), clamp); } 121 void scrollToXOffset(int x, ScrollOffsetClamping clamp = ScrollOffsetUnclamp ed) { scrollToOffset(IntSize(x, scrollYOffset()), clamp); }
122 void scrollToYOffset(int y, ScrollOffsetClamping clamp = ScrollOffsetUnclamp ed) { scrollToOffset(IntSize(scrollXOffset(), y), clamp); } 122 void scrollToYOffset(int y, ScrollOffsetClamping clamp = ScrollOffsetUnclamp ed) { scrollToOffset(IntSize(scrollXOffset(), y), clamp); }
123 123
124 void updateAfterLayout(); 124 void updateAfterLayout();
125 void updateAfterStyleChange(const RenderStyle*); 125 void updateAfterStyleChange(const RenderStyle*);
126 void updateAfterOverflowRecalc();
127 126
128 virtual void updateAfterCompositingChange() OVERRIDE; 127 virtual void updateAfterCompositingChange() OVERRIDE;
129 128
130 bool hasScrollbar() const { return m_hBar || m_vBar; } 129 bool hasScrollbar() const { return m_hBar || m_vBar; }
131 130
132 // FIXME: This should be removed. 131 // FIXME: This should be removed.
133 bool hasScrollCorner() const { return m_scrollCorner; } 132 bool hasScrollCorner() const { return m_scrollCorner; }
134 133
135 void resize(const PlatformEvent&, const LayoutSize&); 134 void resize(const PlatformEvent&, const LayoutSize&);
136 IntSize offsetFromResizeCorner(const IntPoint& absolutePoint) const; 135 IntSize offsetFromResizeCorner(const IntPoint& absolutePoint) const;
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 // Renderers to hold our custom scroll corner. 253 // Renderers to hold our custom scroll corner.
255 RenderScrollbarPart* m_scrollCorner; 254 RenderScrollbarPart* m_scrollCorner;
256 255
257 // Renderers to hold our custom resizer. 256 // Renderers to hold our custom resizer.
258 RenderScrollbarPart* m_resizer; 257 RenderScrollbarPart* m_resizer;
259 }; 258 };
260 259
261 } // Namespace WebCore 260 } // Namespace WebCore
262 261
263 #endif // RenderLayerScrollableArea_h 262 #endif // RenderLayerScrollableArea_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderLayerModelObject.cpp ('k') | Source/core/rendering/RenderLayerScrollableArea.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698