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

Side by Side Diff: third_party/WebKit/Source/core/paint/PaintLayer.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
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 826 matching lines...) Expand 10 before | Expand all | Expand 10 after
837 // box. Otherwise, this is the LayoutInline's lines' bounding box. 837 // box. Otherwise, this is the LayoutInline's lines' bounding box.
838 IntSize m_size; 838 IntSize m_size;
839 839
840 // Cached normal flow values for absolute positioned elements with static le ft/top values. 840 // Cached normal flow values for absolute positioned elements with static le ft/top values.
841 LayoutUnit m_staticInlinePosition; 841 LayoutUnit m_staticInlinePosition;
842 LayoutUnit m_staticBlockPosition; 842 LayoutUnit m_staticBlockPosition;
843 843
844 AncestorDependentCompositingInputs m_ancestorDependentCompositingInputs; 844 AncestorDependentCompositingInputs m_ancestorDependentCompositingInputs;
845 OwnPtr<RareAncestorDependentCompositingInputs> m_rareAncestorDependentCompos itingInputs; 845 OwnPtr<RareAncestorDependentCompositingInputs> m_rareAncestorDependentCompos itingInputs;
846 846
847 OwnPtrWillBePersistent<PaintLayerScrollableArea> m_scrollableArea; 847 Persistent<PaintLayerScrollableArea> m_scrollableArea;
848 848
849 mutable OwnPtr<ClipRectsCache> m_clipRectsCache; 849 mutable OwnPtr<ClipRectsCache> m_clipRectsCache;
850 850
851 OwnPtr<PaintLayerStackingNode> m_stackingNode; 851 OwnPtr<PaintLayerStackingNode> m_stackingNode;
852 852
853 IntSize m_previousScrollOffsetAccumulationForPainting; 853 IntSize m_previousScrollOffsetAccumulationForPainting;
854 RefPtr<ClipRects> m_previousPaintingClipRects; 854 RefPtr<ClipRects> m_previousPaintingClipRects;
855 LayoutRect m_previousPaintDirtyRect; 855 LayoutRect m_previousPaintDirtyRect;
856 856
857 OwnPtr<PaintLayerRareData> m_rareData; 857 OwnPtr<PaintLayerRareData> m_rareData;
858 }; 858 };
859 859
860 } // namespace blink 860 } // namespace blink
861 861
862 #ifndef NDEBUG 862 #ifndef NDEBUG
863 // Outside the WebCore namespace for ease of invocation from gdb. 863 // Outside the WebCore namespace for ease of invocation from gdb.
864 void showLayerTree(const blink::PaintLayer*); 864 void showLayerTree(const blink::PaintLayer*);
865 void showLayerTree(const blink::LayoutObject*); 865 void showLayerTree(const blink::LayoutObject*);
866 #endif 866 #endif
867 867
868 #endif // Layer_h 868 #endif // Layer_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/paint/NinePieceImageGridTest.cpp ('k') | third_party/WebKit/Source/core/paint/PaintLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698