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

Unified Diff: sky/engine/platform/graphics/GraphicsLayer.cpp

Issue 731863003: Remove CSSCompositing (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: preland Created 6 years, 1 month 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 | « sky/engine/platform/graphics/GraphicsLayer.h ('k') | sky/engine/public/platform/WebLayer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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()) {
« no previous file with comments | « sky/engine/platform/graphics/GraphicsLayer.h ('k') | sky/engine/public/platform/WebLayer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698