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

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

Issue 2299533002: WIP: Construct SPV2's scroll paint property tree (Closed)
Patch Set: Add more paint property builder tests, update comments/documentation" 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.h
diff --git a/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.h b/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.h
index 7be0fedfd69935b48a6f25ffbd47ad8c28b19cc0..341efbe7861538e8384684ae866e0256581e747c 100644
--- a/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.h
+++ b/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.h
@@ -16,6 +16,7 @@ class ClipPaintPropertyNode;
class FrameView;
class EffectPaintPropertyNode;
class TransformPaintPropertyNode;
+class ScrollPaintPropertyNode;
} // namespace blink
@@ -23,9 +24,11 @@ class TransformPaintPropertyNode;
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 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 paintPropertyTreeGraph(const blink::FrameView&);
#endif // ifndef NDEBUG

Powered by Google App Engine
This is Rietveld 408576698