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

Unified Diff: Source/core/inspector/InspectorLayerTreeAgent.cpp

Issue 23511004: mix-blend-mode implementation for accelerated layers - blink part (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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
Index: Source/core/inspector/InspectorLayerTreeAgent.cpp
diff --git a/Source/core/inspector/InspectorLayerTreeAgent.cpp b/Source/core/inspector/InspectorLayerTreeAgent.cpp
index 51932836c489be37a22a26cb0ce8ec500cb67a9f..34c15956eb65d4747c82664be9ccc34a7616b3c9 100644
--- a/Source/core/inspector/InspectorLayerTreeAgent.cpp
+++ b/Source/core/inspector/InspectorLayerTreeAgent.cpp
@@ -283,7 +283,8 @@ void InspectorLayerTreeAgent::compositingReasons(ErrorString* errorString, const
{ CompositingReasonLayerForForeground, "layerForForeground" },
{ CompositingReasonLayerForBackground, "layerForBackground" },
{ CompositingReasonLayerForMask, "layerForMask" },
- { CompositingReasonLayerForVideoOverlay, "layerForVideoOverlay" }
+ { CompositingReasonLayerForVideoOverlay, "layerForVideoOverlay" },
+ { CompositingReasonIsolateCompositedDescendants, "isolateCompositedDescendants" }
};
const GraphicsLayer* graphicsLayer = layerById(errorString, layerId);

Powered by Google App Engine
This is Rietveld 408576698