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

Unified Diff: Source/core/paint/DeprecatedPaintLayerStackingNode.h

Issue 1199413006: Switch DPLStackingNode to use LayoutBoxModelObject (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Removed extra 'make' Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/paint/DeprecatedPaintLayer.cpp ('k') | Source/core/paint/DeprecatedPaintLayerStackingNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/DeprecatedPaintLayerStackingNode.h
diff --git a/Source/core/paint/DeprecatedPaintLayerStackingNode.h b/Source/core/paint/DeprecatedPaintLayerStackingNode.h
index 8a9bab8a7dc437fb6886f95718102ac83fd35fb2..069a0fa727015dd426d46ab699523142d19fe276 100644
--- a/Source/core/paint/DeprecatedPaintLayerStackingNode.h
+++ b/Source/core/paint/DeprecatedPaintLayerStackingNode.h
@@ -61,12 +61,12 @@ class LayoutBoxModelObject;
class CORE_EXPORT DeprecatedPaintLayerStackingNode {
WTF_MAKE_NONCOPYABLE(DeprecatedPaintLayerStackingNode);
public:
- explicit DeprecatedPaintLayerStackingNode(DeprecatedPaintLayer*);
+ explicit DeprecatedPaintLayerStackingNode(LayoutBoxModelObject&);
~DeprecatedPaintLayerStackingNode();
- int zIndex() const { return layoutObject()->style()->zIndex(); }
+ int zIndex() const { return layoutObject().style()->zIndex(); }
- bool isStackingContext() const { return layoutObject()->style()->isStackingContext(); }
+ bool isStackingContext() const { return layoutObject().style()->isStackingContext(); }
// Update our normal and z-index lists.
void updateLayerListsIfNeeded();
@@ -91,7 +91,9 @@ public:
DeprecatedPaintLayerStackingNode* ancestorStackingContextNode() const;
- DeprecatedPaintLayer* layer() const { return m_layer; }
+ // FIXME: A lot of code depends on this function but shouldn't. We should
+ // build our code on top of LayoutBoxModelObject, not DeprecatedPaintLayer.
+ DeprecatedPaintLayer* layer() const;
#if ENABLE(ASSERT)
bool layerListMutationAllowed() const { return m_layerListMutationAllowed; }
@@ -124,7 +126,6 @@ private:
}
void rebuildZOrderLists();
- void collectLayers(OwnPtr<Vector<DeprecatedPaintLayerStackingNode*>>& posZOrderList, OwnPtr<Vector<DeprecatedPaintLayerStackingNode*>>& negZOrderList);
#if ENABLE(ASSERT)
bool isInStackingParentZOrderLists() const;
@@ -134,7 +135,7 @@ private:
void setStackingParent(DeprecatedPaintLayerStackingNode* stackingParent) { m_stackingParent = stackingParent; }
#endif
- bool shouldBeTreatedAsStackingContextForPainting() const { return layoutObject()->style()->isTreatedAsStackingContextForPainting(); }
+ bool shouldBeTreatedAsStackingContextForPainting() const { return layoutObject().style()->isTreatedAsStackingContextForPainting(); }
void updateNormalFlowList();
@@ -142,9 +143,9 @@ private:
DeprecatedPaintLayerCompositor* compositor() const;
// We can't return a LayoutBox as LayoutInline can be a stacking context.
- LayoutBoxModelObject* layoutObject() const;
+ LayoutBoxModelObject& layoutObject() const { return m_layoutObject; }
- DeprecatedPaintLayer* m_layer;
+ LayoutBoxModelObject& m_layoutObject;
// m_posZOrderList holds a sorted list of all the descendant nodes within
// that have z-indices of 0 or greater (auto will count as 0).
« no previous file with comments | « Source/core/paint/DeprecatedPaintLayer.cpp ('k') | Source/core/paint/DeprecatedPaintLayerStackingNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698