Index: Source/core/rendering/RenderLayerBacking.h |
diff --git a/Source/core/rendering/RenderLayerBacking.h b/Source/core/rendering/RenderLayerBacking.h |
index e4efc64407a816e1404402dc5e8df703ba5bf3d7..908145878b0defcf13b26e05c2bc16554c4cb9f3 100644 |
--- a/Source/core/rendering/RenderLayerBacking.h |
+++ b/Source/core/rendering/RenderLayerBacking.h |
@@ -85,8 +85,6 @@ public: |
bool hasAncestorClippingLayer() const { return m_ancestorClippingLayer != 0; } |
GraphicsLayer* ancestorClippingLayer() const { return m_ancestorClippingLayer.get(); } |
- GraphicsLayer* contentsContainmentLayer() const { return m_contentsContainmentLayer.get(); } |
- |
bool hasContentsLayer() const { return m_foregroundLayer != 0; } |
GraphicsLayer* foregroundLayer() const { return m_foregroundLayer.get(); } |
@@ -192,8 +190,6 @@ private: |
void updateDrawsContent(bool isSimpleContainer); |
void registerScrollingLayers(); |
- void updateRootLayerConfiguration(); |
- |
void setBackgroundLayerPaintsFixedRootBackground(bool); |
GraphicsLayerPaintingPhase paintingPhaseForPrimaryLayer() const; |
@@ -241,7 +237,6 @@ private: |
RenderLayer* m_owningLayer; |
OwnPtr<GraphicsLayer> m_ancestorClippingLayer; // Only used if we are clipped by an ancestor which is not a stacking context. |
- OwnPtr<GraphicsLayer> m_contentsContainmentLayer; // Only used if we have a background layer; takes the transform. |
OwnPtr<GraphicsLayer> m_graphicsLayer; |
OwnPtr<GraphicsLayer> m_foregroundLayer; // Only used in cases where we need to draw the foreground separately. |
OwnPtr<GraphicsLayer> m_backgroundLayer; // Only used in cases where we need to draw the background separately. |