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 23ecc3d00cd0b2cdf325cd826974a7da4dcd24f9..968472a01540bca689617a25de09c10c43031446 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); |
} |