| Index: third_party/WebKit/Source/core/paint/PaintControllerPaintTest.h
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintControllerPaintTest.h b/third_party/WebKit/Source/core/paint/PaintControllerPaintTest.h
|
| index 83a1cf404b1b81b9adcd1a1aff6a324b8e0ed66b..a114ba9e8721aea7edf246b86581e54b34f72217 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintControllerPaintTest.h
|
| +++ b/third_party/WebKit/Source/core/paint/PaintControllerPaintTest.h
|
| @@ -98,9 +98,9 @@ public:
|
| PaintControllerPaintTestForSlimmingPaintV1AndV2() : PaintControllerPaintTestBase(GetParam()) { }
|
| };
|
|
|
| -class TestDisplayItem final : public DisplayItem {
|
| +class TestDisplayItem final : public DisplayItemBase<TestDisplayItem> {
|
| public:
|
| - TestDisplayItem(const DisplayItemClient& client, Type type) : DisplayItem(client, type, sizeof(*this)) { }
|
| + TestDisplayItem(const DisplayItemClient& client, Type type) : DisplayItemBase(client, type) { }
|
|
|
| void replay(GraphicsContext&) const final { ASSERT_NOT_REACHED(); }
|
| void appendToWebDisplayItemList(const IntRect&, WebDisplayItemList*) const final { ASSERT_NOT_REACHED(); }
|
|
|