| Index: third_party/WebKit/Source/platform/graphics/paint/GeometryMapperTest.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/GeometryMapperTest.cpp b/third_party/WebKit/Source/platform/graphics/paint/GeometryMapperTest.cpp
|
| index aa8aa34aeb77106d94765bcc54028c284ac2d3fe..7a5f7a718e5f6ded00babc994596b02e867c2a25 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/GeometryMapperTest.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/GeometryMapperTest.cpp
|
| @@ -8,7 +8,6 @@
|
| #include "platform/geometry/LayoutRect.h"
|
| #include "platform/graphics/paint/ClipPaintPropertyNode.h"
|
| #include "platform/graphics/paint/EffectPaintPropertyNode.h"
|
| -#include "platform/graphics/paint/ScrollPaintPropertyNode.h"
|
| #include "platform/graphics/paint/TransformPaintPropertyNode.h"
|
| #include "platform/testing/PaintPropertyTestHelpers.h"
|
| #include "platform/testing/RuntimeEnabledFeaturesTestHelpers.h"
|
| @@ -24,9 +23,9 @@ class GeometryMapperTest : public ::testing::Test,
|
| std::unique_ptr<GeometryMapper> geometryMapper;
|
|
|
| PropertyTreeState rootPropertyTreeState() {
|
| - PropertyTreeState state(
|
| - TransformPaintPropertyNode::root(), ClipPaintPropertyNode::root(),
|
| - EffectPaintPropertyNode::root(), ScrollPaintPropertyNode::root());
|
| + PropertyTreeState state(TransformPaintPropertyNode::root(),
|
| + ClipPaintPropertyNode::root(),
|
| + EffectPaintPropertyNode::root());
|
| return state;
|
| }
|
|
|
|
|