Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / dom / ClientRectList.cpp
index 7828882..abf571f 100644 (file)
@@ -29,7 +29,9 @@
 
 #include "core/dom/ClientRect.h"
 
-namespace WebCore {
+namespace blink {
+
+DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(ClientRectList);
 
 ClientRectList::ClientRectList()
 {
@@ -44,10 +46,6 @@ ClientRectList::ClientRectList(const Vector<FloatQuad>& quads)
         m_list.append(ClientRect::create(quads[i].enclosingBoundingBox()));
 }
 
-ClientRectList::~ClientRectList()
-{
-}
-
 unsigned ClientRectList::length() const
 {
     return m_list.size();
@@ -69,4 +67,4 @@ void ClientRectList::trace(Visitor* visitor)
     visitor->trace(m_list);
 }
 
-} // namespace WebCore
+} // namespace blink