| Index: Source/core/dom/DOMRectReadOnly.h
|
| diff --git a/Source/core/dom/DOMRectReadOnly.h b/Source/core/dom/DOMRectReadOnly.h
|
| index 83ad6b1f4d9117461b145ca54d3b973dee78bb01..009bba3de661f269828c67af7aace3ba77ee0c22 100644
|
| --- a/Source/core/dom/DOMRectReadOnly.h
|
| +++ b/Source/core/dom/DOMRectReadOnly.h
|
| @@ -25,7 +25,7 @@ public:
|
| double bottom() const { return std::max(m_y, m_y + m_height); }
|
| double left() const { return std::min(m_x, m_x + m_width); }
|
|
|
| - void trace(Visitor*) { }
|
| + DEFINE_INLINE_TRACE() { }
|
|
|
| protected:
|
| DOMRectReadOnly(double x, double y, double width, double height);
|
|
|