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

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

Issue 2377183002: Add paint property path printers and test them (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.h
diff --git a/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.h b/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.h
index ed1b82b57f85728d7eb20926fb01fa9fa80ef421..f7e830ffd514ff12e0837bd8bf47ad3252daa5ef 100644
--- a/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.h
+++ b/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.h
@@ -26,12 +26,20 @@ CORE_EXPORT void showTransformPropertyTree(const blink::FrameView& rootFrame);
CORE_EXPORT void showClipPropertyTree(const blink::FrameView& rootFrame);
CORE_EXPORT void showEffectPropertyTree(const blink::FrameView& rootFrame);
CORE_EXPORT void showScrollPropertyTree(const blink::FrameView& rootFrame);
-
CORE_EXPORT String transformPropertyTreeAsString(const blink::FrameView& rootFrame);
CORE_EXPORT String clipPropertyTreeAsString(const blink::FrameView& rootFrame);
CORE_EXPORT String effectPropertyTreeAsString(const blink::FrameView& rootFrame);
CORE_EXPORT String scrollPropertyTreeAsString(const blink::FrameView& rootFrame);
+CORE_EXPORT void showPaintPropertyPath(const blink::TransformPaintPropertyNode*);
+CORE_EXPORT void showPaintPropertyPath(const blink::ClipPaintPropertyNode*);
+CORE_EXPORT void showPaintPropertyPath(const blink::EffectPaintPropertyNode*);
+CORE_EXPORT void showPaintPropertyPath(const blink::ScrollPaintPropertyNode*);
+CORE_EXPORT String transformPaintPropertyPathAsString(const blink::TransformPaintPropertyNode*);
+CORE_EXPORT String clipPaintPropertyPathAsString(const blink::ClipPaintPropertyNode*);
+CORE_EXPORT String effectPaintPropertyPathAsString(const blink::EffectPaintPropertyNode*);
+CORE_EXPORT String scrollPaintPropertyPathAsString(const blink::ScrollPaintPropertyNode*);
+
CORE_EXPORT String paintPropertyTreeGraph(const blink::FrameView&);
#endif // ifndef NDEBUG
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698