| Index: Source/platform/graphics/paint/ClipDisplayItem.h
|
| diff --git a/Source/platform/graphics/paint/ClipDisplayItem.h b/Source/platform/graphics/paint/ClipDisplayItem.h
|
| index b6266714f0e46f9ae19b7f0651d1baa5a856e82a..e732ef421bed717269d5de0637c6ce43f3b1e877 100644
|
| --- a/Source/platform/graphics/paint/ClipDisplayItem.h
|
| +++ b/Source/platform/graphics/paint/ClipDisplayItem.h
|
| @@ -30,12 +30,12 @@ public:
|
| m_roundedRectClips.swap(roundedRectClips);
|
| }
|
|
|
| - virtual void replay(GraphicsContext&) override;
|
| - virtual void appendToWebDisplayItemList(WebDisplayItemList*) const override;
|
| + void replay(GraphicsContext&) override;
|
| + void appendToWebDisplayItemList(WebDisplayItemList*) const override;
|
|
|
| private:
|
| #ifndef NDEBUG
|
| - virtual void dumpPropertiesAsDebugString(WTF::StringBuilder&) const override;
|
| + void dumpPropertiesAsDebugString(WTF::StringBuilder&) const override;
|
| #endif
|
| const IntRect m_clipRect;
|
| Vector<FloatRoundedRect> m_roundedRectClips;
|
| @@ -49,12 +49,12 @@ public:
|
| ASSERT(isEndClipType(type));
|
| }
|
|
|
| - virtual void replay(GraphicsContext&) override;
|
| - virtual void appendToWebDisplayItemList(WebDisplayItemList*) const override;
|
| + void replay(GraphicsContext&) override;
|
| + void appendToWebDisplayItemList(WebDisplayItemList*) const override;
|
|
|
| private:
|
| #if ENABLE(ASSERT)
|
| - virtual bool isEndAndPairedWith(DisplayItem::Type otherType) const override final { return DisplayItem::isClipType(otherType); }
|
| + bool isEndAndPairedWith(DisplayItem::Type otherType) const final { return DisplayItem::isClipType(otherType); }
|
| #endif
|
| };
|
|
|
|
|