| 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 f41adc6a39c8f97e7d0eaff58abd4cd5b3dbdee2..579525936b15fd53eb2b77577aeeee9c861f6af2 100644
|
| --- a/third_party/WebKit/Source/platform/testing/TestPaintArtifact.cpp
|
| +++ b/third_party/WebKit/Source/platform/testing/TestPaintArtifact.cpp
|
| @@ -74,7 +74,7 @@ TestPaintArtifact& TestPaintArtifact::chunk(
|
| TestPaintArtifact& TestPaintArtifact::rectDrawing(const FloatRect& bounds,
|
| Color color) {
|
| std::unique_ptr<DummyRectClient> client =
|
| - wrapUnique(new DummyRectClient(bounds, color));
|
| + makeUnique<DummyRectClient>(bounds, color);
|
| m_displayItemList.allocateAndConstruct<DrawingDisplayItem>(
|
| *client, DisplayItem::kDrawingFirst, client->makePicture());
|
| m_dummyClients.append(std::move(client));
|
|
|