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

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

Issue 869323003: Oilpan: move RenderObjects off heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review-induced improvements Created 5 years, 10 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 // This is the (scroll) offset from scrollOrigin(). 271 // This is the (scroll) offset from scrollOrigin().
272 DoubleSize m_scrollOffset; 272 DoubleSize m_scrollOffset;
273 273
274 IntPoint m_cachedOverlayScrollbarOffset; 274 IntPoint m_cachedOverlayScrollbarOffset;
275 275
276 // For areas with overflow, we have a pair of scrollbars. 276 // For areas with overflow, we have a pair of scrollbars.
277 RefPtrWillBePersistent<Scrollbar> m_hBar; 277 RefPtrWillBePersistent<Scrollbar> m_hBar;
278 RefPtrWillBePersistent<Scrollbar> m_vBar; 278 RefPtrWillBePersistent<Scrollbar> m_vBar;
279 279
280 // Renderers to hold our custom scroll corner. 280 // Renderers to hold our custom scroll corner.
281 RawPtrWillBePersistent<RenderScrollbarPart> m_scrollCorner; 281 RenderScrollbarPart* m_scrollCorner;
282 282
283 // Renderers to hold our custom resizer. 283 // Renderers to hold our custom resizer.
284 RawPtrWillBePersistent<RenderScrollbarPart> m_resizer; 284 RenderScrollbarPart* m_resizer;
285 }; 285 };
286 286
287 } // namespace blink 287 } // namespace blink
288 288
289 #endif // RenderLayerScrollableArea_h 289 #endif // RenderLayerScrollableArea_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderLayerReflectionInfo.cpp ('k') | Source/core/rendering/RenderListItem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698