| 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 6aff3b0142aa097b218fea974b7e54dfb1d46bdd..23ecc3d00cd0b2cdf325cd826974a7da4dcd24f9 100644
|
| --- a/third_party/WebKit/Source/platform/testing/TestPaintArtifact.cpp
|
| +++ b/third_party/WebKit/Source/platform/testing/TestPaintArtifact.cpp
|
| @@ -77,7 +77,7 @@ TestPaintArtifact& TestPaintArtifact::rectDrawing(const FloatRect& bounds, Color
|
| {
|
| std::unique_ptr<DummyRectClient> client = wrapUnique(new DummyRectClient(bounds, color));
|
| m_displayItemList.allocateAndConstruct<DrawingDisplayItem>(
|
| - *client, DisplayItem::DrawingFirst, client->makePicture());
|
| + *client, DisplayItem::kDrawingFirst, client->makePicture());
|
| m_dummyClients.append(std::move(client));
|
| return *this;
|
| }
|
| @@ -87,7 +87,7 @@ TestPaintArtifact& TestPaintArtifact::foreignLayer(const FloatPoint& location, c
|
| FloatRect floatBounds(location, FloatSize(size));
|
| std::unique_ptr<DummyRectClient> client = wrapUnique(new DummyRectClient(floatBounds, Color::transparent));
|
| m_displayItemList.allocateAndConstruct<ForeignLayerDisplayItem>(
|
| - *client, DisplayItem::ForeignLayerFirst, std::move(layer), location, size);
|
| + *client, DisplayItem::kForeignLayerFirst, std::move(layer), location, size);
|
| m_dummyClients.append(std::move(client));
|
| return *this;
|
| }
|
|
|