| Index: Source/core/rendering/RenderLayer.h
|
| diff --git a/Source/core/rendering/RenderLayer.h b/Source/core/rendering/RenderLayer.h
|
| index f6a8c3681d3009e4ad727259633ca749754ca8fb..ed86a0c6dd4c85956900d5dc01c66957e3cef676 100644
|
| --- a/Source/core/rendering/RenderLayer.h
|
| +++ b/Source/core/rendering/RenderLayer.h
|
| @@ -185,9 +185,6 @@ public:
|
| bool hasVisibleNonLayerContent() const { return m_hasVisibleNonLayerContent; }
|
| bool hasNonCompositedChild() const { ASSERT(isAllowedToQueryCompositingState()); return m_hasNonCompositedChild; }
|
|
|
| - bool usedTransparency() const { return m_usedTransparency; }
|
| - void setUsedTransparency(bool usedTransparency) { m_usedTransparency = usedTransparency; }
|
| -
|
| // Gets the nearest enclosing positioned ancestor layer (also includes
|
| // the <html> layer and the root layer).
|
| RenderLayer* enclosingPositionedAncestor() const;
|
| @@ -607,10 +604,6 @@ private:
|
|
|
| const unsigned m_isRootLayer : 1;
|
|
|
| - unsigned m_usedTransparency : 1; // Tracks whether we need to close a transparent layer, i.e., whether
|
| - // we ended up painting this layer or any descendants (and therefore need to
|
| - // blend).
|
| -
|
| unsigned m_visibleContentStatusDirty : 1;
|
| unsigned m_hasVisibleContent : 1;
|
| unsigned m_visibleDescendantStatusDirty : 1;
|
|
|