| Index: third_party/WebKit/Source/platform/graphics/paint/PaintArtifact.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/PaintArtifact.cpp b/third_party/WebKit/Source/platform/graphics/paint/PaintArtifact.cpp
|
| index a3ad96af48dbe6857fccb2ec32f6644f82ea2647..fc935fafd2bbfed92d3ce7619ad7bc2609bdbbe5 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/PaintArtifact.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/PaintArtifact.cpp
|
| @@ -100,7 +100,6 @@ void PaintArtifact::replay(const FloatRect& bounds,
|
| const PropertyTreeState& replayState) const {
|
| TRACE_EVENT0("blink,benchmark", "PaintArtifact::replay");
|
| DCHECK(RuntimeEnabledFeatures::slimmingPaintV2Enabled());
|
| - std::unique_ptr<GeometryMapper> geometryMapper = GeometryMapper::create();
|
| Vector<const PaintChunk*> pointerPaintChunks;
|
| pointerPaintChunks.reserveInitialCapacity(paintChunks().size());
|
|
|
| @@ -110,8 +109,7 @@ void PaintArtifact::replay(const FloatRect& bounds,
|
| pointerPaintChunks.push_back(&chunk);
|
| scoped_refptr<cc::DisplayItemList> displayItemList =
|
| PaintChunksToCcLayer::convert(pointerPaintChunks, replayState,
|
| - gfx::Vector2dF(), getDisplayItemList(),
|
| - *geometryMapper);
|
| + gfx::Vector2dF(), getDisplayItemList());
|
| canvas.drawDisplayItemList(displayItemList);
|
| }
|
|
|
|
|