Index: Source/platform/graphics/paint/TransformDisplayItem.h |
diff --git a/Source/platform/graphics/paint/TransformDisplayItem.h b/Source/platform/graphics/paint/TransformDisplayItem.h |
index e16f5c78246805c6976e72299a1d2684683ae0a6..a27dba23c2032523693f4482f92fab05b0c1da95 100644 |
--- a/Source/platform/graphics/paint/TransformDisplayItem.h |
+++ b/Source/platform/graphics/paint/TransformDisplayItem.h |
@@ -17,12 +17,12 @@ public: |
: PairedBeginDisplayItem(client, BeginTransform) |
, m_transform(transform) { } |
- 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 final; |
+ void dumpPropertiesAsDebugString(WTF::StringBuilder&) const final; |
#endif |
const AffineTransform m_transform; |
@@ -33,12 +33,12 @@ public: |
EndTransformDisplayItem(const DisplayItemClientWrapper& client) |
: PairedEndDisplayItem(client, EndTransform) { } |
- 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 otherType == BeginTransform; } |
+ bool isEndAndPairedWith(DisplayItem::Type otherType) const final { return otherType == BeginTransform; } |
#endif |
}; |