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

Side by Side Diff: Source/core/rendering/RenderLayer.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
« no previous file with comments | « Source/core/rendering/RenderInline.cpp ('k') | Source/core/rendering/RenderLayer.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 * Copyright (C) 2013 Intel Corporation. All rights reserved. 3 * Copyright (C) 2013 Intel Corporation. All rights reserved.
4 * 4 *
5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation.
6 * 6 *
7 * Other contributors: 7 * Other contributors:
8 * Robert O'Callahan <roc+@cs.cmu.edu> 8 * Robert O'Callahan <roc+@cs.cmu.edu>
9 * David Baron <dbaron@fas.harvard.edu> 9 * David Baron <dbaron@fas.harvard.edu>
10 * Christian Biesinger <cbiesinger@web.de> 10 * Christian Biesinger <cbiesinger@web.de>
(...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after
702 702
703 IntRect m_blockSelectionGapsBounds; 703 IntRect m_blockSelectionGapsBounds;
704 704
705 OwnPtr<CompositedLayerMapping> m_compositedLayerMapping; 705 OwnPtr<CompositedLayerMapping> m_compositedLayerMapping;
706 OwnPtr<RenderLayerScrollableArea> m_scrollableArea; 706 OwnPtr<RenderLayerScrollableArea> m_scrollableArea;
707 707
708 CompositedLayerMapping* m_groupedMapping; 708 CompositedLayerMapping* m_groupedMapping;
709 709
710 RenderLayerClipper m_clipper; // FIXME: Lazily allocate? 710 RenderLayerClipper m_clipper; // FIXME: Lazily allocate?
711 OwnPtr<RenderLayerStackingNode> m_stackingNode; 711 OwnPtr<RenderLayerStackingNode> m_stackingNode;
712 OwnPtrWillBePersistent<RenderLayerReflectionInfo> m_reflectionInfo; 712 OwnPtr<RenderLayerReflectionInfo> m_reflectionInfo;
713 713
714 LayoutSize m_subpixelAccumulation; // The accumulated subpixel offset of a c omposited layer's composited bounds compared to absolute coordinates. 714 LayoutSize m_subpixelAccumulation; // The accumulated subpixel offset of a c omposited layer's composited bounds compared to absolute coordinates.
715 }; 715 };
716 716
717 } // namespace blink 717 } // namespace blink
718 718
719 #ifndef NDEBUG 719 #ifndef NDEBUG
720 // Outside the WebCore namespace for ease of invocation from gdb. 720 // Outside the WebCore namespace for ease of invocation from gdb.
721 void showLayerTree(const blink::RenderLayer*); 721 void showLayerTree(const blink::RenderLayer*);
722 void showLayerTree(const blink::RenderObject*); 722 void showLayerTree(const blink::RenderObject*);
723 #endif 723 #endif
724 724
725 #endif // RenderLayer_h 725 #endif // RenderLayer_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderInline.cpp ('k') | Source/core/rendering/RenderLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698