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

Unified Diff: third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp

Issue 2322073006: Turn off the old compositing path for SPv2. (Closed)
Patch Set: none Created 4 years, 3 months 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: third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp b/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp
index 2c0169ea59c7a98e2795ba17fcc189c72ddc7399..b2853e445ca7ff35f99c0d2e2e81a5bd8003896b 100644
--- a/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp
@@ -486,6 +486,13 @@ const char* PaintPropertyTreeGraphBuilder::s_effectNodeColor = "black";
} // namespace {
} // namespace blink
+CORE_EXPORT void showAllPropertyTrees(const blink::FrameView& rootFrame)
+{
+ showTransformPropertyTree(rootFrame);
+ showClipPropertyTree(rootFrame);
+ showEffectPropertyTree(rootFrame);
+}
+
void showTransformPropertyTree(const blink::FrameView& rootFrame)
{
blink::PropertyTreePrinter<blink::TransformPaintPropertyNode>().showTree(rootFrame);

Powered by Google App Engine
This is Rietveld 408576698