| Index: Source/core/dom/ClientRect.cpp
|
| diff --git a/Source/core/dom/ClientRect.cpp b/Source/core/dom/ClientRect.cpp
|
| index e49a9b6b2e8c6c81943505165923f1824ac6785c..b550fbb0ed7d0c9ab6cdbddfb12f366e9ad03daf 100644
|
| --- a/Source/core/dom/ClientRect.cpp
|
| +++ b/Source/core/dom/ClientRect.cpp
|
| @@ -31,19 +31,16 @@ namespace blink {
|
|
|
| ClientRect::ClientRect()
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| ClientRect::ClientRect(const IntRect& rect)
|
| : m_rect(rect)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| ClientRect::ClientRect(const FloatRect& rect)
|
| : m_rect(rect)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| } // namespace blink
|
|
|