| Index: third_party/WebKit/Source/platform/graphics/paint/PaintControllerTest.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/PaintControllerTest.cpp b/third_party/WebKit/Source/platform/graphics/paint/PaintControllerTest.cpp
|
| index 826c05dd83d5a9004553b85733a21bbe0b077221..a4d3df9afc6152a455dd30cd166262d2288c7933 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/PaintControllerTest.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/PaintControllerTest.cpp
|
| @@ -47,9 +47,10 @@ const DisplayItem::Type foregroundDrawingType = static_cast<DisplayItem::Type>(D
|
| const DisplayItem::Type backgroundDrawingType = DisplayItem::DrawingPaintPhaseFirst;
|
| const DisplayItem::Type clipType = DisplayItem::ClipFirst;
|
|
|
| -class TestDisplayItem final : public DisplayItem {
|
| +class TestDisplayItem final : public DisplayItemBase<TestDisplayItem> {
|
| public:
|
| - TestDisplayItem(const FakeDisplayItemClient& client, Type type) : DisplayItem(client, type, sizeof(*this)) { }
|
| + TestDisplayItem(const FakeDisplayItemClient& client, Type type)
|
| + : DisplayItemBase(client, type) { }
|
|
|
| void replay(GraphicsContext&) const final { ASSERT_NOT_REACHED(); }
|
| void appendToWebDisplayItemList(const IntRect&, WebDisplayItemList*) const final { ASSERT_NOT_REACHED(); }
|
|
|