| Index: sky/engine/platform/graphics/GraphicsLayer.cpp
|
| diff --git a/sky/engine/platform/graphics/GraphicsLayer.cpp b/sky/engine/platform/graphics/GraphicsLayer.cpp
|
| index aeca2b46d432fb21d80495ededb9299b6eeb8a10..905c95254d7301dbc3b85703aca55ddf3d4e8189 100644
|
| --- a/sky/engine/platform/graphics/GraphicsLayer.cpp
|
| +++ b/sky/engine/platform/graphics/GraphicsLayer.cpp
|
| @@ -90,7 +90,6 @@ GraphicsLayer::GraphicsLayer(GraphicsLayerClient* client)
|
| , m_masksToBounds(false)
|
| , m_drawsContent(false)
|
| , m_contentsVisible(true)
|
| - , m_isRootForIsolatedGroup(false)
|
| , m_hasScrollParent(false)
|
| , m_hasClipParent(false)
|
| , m_paintingPhase(GraphicsLayerPaintAllWithOverflowClip)
|
| @@ -541,9 +540,6 @@ PassRefPtr<JSONObject> GraphicsLayer::layerTreeAsJSON(LayerTreeFlags flags, Rend
|
| if (m_blendMode != WebBlendModeNormal)
|
| json->setString("blendMode", compositeOperatorName(CompositeSourceOver, m_blendMode));
|
|
|
| - if (m_isRootForIsolatedGroup)
|
| - json->setBoolean("isolate", m_isRootForIsolatedGroup);
|
| -
|
| if (m_contentsOpaque)
|
| json->setBoolean("contentsOpaque", m_contentsOpaque);
|
|
|
| @@ -838,14 +834,6 @@ void GraphicsLayer::setBlendMode(WebBlendMode blendMode)
|
| platformLayer()->setBlendMode(WebBlendMode(blendMode));
|
| }
|
|
|
| -void GraphicsLayer::setIsRootForIsolatedGroup(bool isolated)
|
| -{
|
| - if (m_isRootForIsolatedGroup == isolated)
|
| - return;
|
| - m_isRootForIsolatedGroup = isolated;
|
| - platformLayer()->setIsRootForIsolatedGroup(isolated);
|
| -}
|
| -
|
| void GraphicsLayer::setContentsNeedsDisplay()
|
| {
|
| if (WebLayer* contentsLayer = contentsLayerIfRegistered()) {
|
|
|