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

Unified Diff: third_party/WebKit/Source/platform/testing/TestPaintArtifact.cpp

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
« no previous file with comments | « third_party/WebKit/Source/platform/testing/TestPaintArtifact.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/testing/TestPaintArtifact.cpp
diff --git a/third_party/WebKit/Source/platform/testing/TestPaintArtifact.cpp b/third_party/WebKit/Source/platform/testing/TestPaintArtifact.cpp
index 9394b5d289e9e27556dee672377b056b3c1aef68..a25ee71b9339d08572148371ddb89fd43d3c4296 100644
--- a/third_party/WebKit/Source/platform/testing/TestPaintArtifact.cpp
+++ b/third_party/WebKit/Source/platform/testing/TestPaintArtifact.cpp
@@ -53,12 +53,14 @@ TestPaintArtifact::~TestPaintArtifact()
TestPaintArtifact& TestPaintArtifact::chunk(
PassRefPtr<TransformPaintPropertyNode> transform,
PassRefPtr<ClipPaintPropertyNode> clip,
- PassRefPtr<EffectPaintPropertyNode> effect)
+ PassRefPtr<EffectPaintPropertyNode> effect,
+ PassRefPtr<ScrollPaintPropertyNode> scroll)
{
PaintChunkProperties properties;
properties.transform = transform;
properties.clip = clip;
properties.effect = effect;
+ properties.scroll = scroll;
return chunk(properties);
}
« no previous file with comments | « third_party/WebKit/Source/platform/testing/TestPaintArtifact.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698