Index: Source/platform/graphics/paint/TransformDisplayItem.h |
diff --git a/Source/platform/graphics/paint/TransformDisplayItem.h b/Source/platform/graphics/paint/TransformDisplayItem.h |
index 1420aee09088344da6f42fa4ea5e9413a3990468..86cfd456c5ba0ae6a0c925d78ead29c334fe4e2b 100644 |
--- a/Source/platform/graphics/paint/TransformDisplayItem.h |
+++ b/Source/platform/graphics/paint/TransformDisplayItem.h |
@@ -22,6 +22,10 @@ protected: |
BeginTransformDisplayItem(DisplayItemClient, const AffineTransform&); |
private: |
+#ifndef NDEBUG |
+ virtual const char* name() const override { return "BeginTransform"; } |
+#endif |
+ |
const AffineTransform m_transform; |
}; |
@@ -35,6 +39,11 @@ public: |
protected: |
EndTransformDisplayItem(DisplayItemClient client) |
: DisplayItem(client, EndTransform) { } |
+ |
+private: |
+#ifndef NDEBUG |
+ virtual const char* name() const override { return "EndTransform"; } |
+#endif |
}; |
} // namespace blink |