Index: Source/platform/RefCountedSupplement.h |
diff --git a/Source/platform/RefCountedSupplement.h b/Source/platform/RefCountedSupplement.h |
index 29c9d085bdc71c8ec32c90b40a126b91f6c88c19..19632e4c8de8ec64254472fe39d7d915e8e5e5a3 100644 |
--- a/Source/platform/RefCountedSupplement.h |
+++ b/Source/platform/RefCountedSupplement.h |
@@ -45,7 +45,7 @@ public: |
explicit Wrapper(PassRefPtr<ThisType> wrapped) : m_wrapped(wrapped) { } |
virtual ~Wrapper() { } |
#if ENABLE(SECURITY_ASSERT) |
- virtual bool isRefCountedWrapper() const override { return true; } |
+ bool isRefCountedWrapper() const override { return true; } |
#endif |
ThisType* wrapped() const { return m_wrapped.get(); } |