X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fcore%2Fdom%2FClientRectList.cpp;h=abf571ffd01fd69488a27b7db67ef81beb39e5af;hb=4a1a0bdd01eef90b0826a0e761d3379d3715c10f;hp=78288826534268502b38503817212362899f4cdb;hpb=b1be5ca53587d23e7aeb77b26861fdc0a181ffd8;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/core/dom/ClientRectList.cpp b/src/third_party/WebKit/Source/core/dom/ClientRectList.cpp index 7828882..abf571f 100644 --- a/src/third_party/WebKit/Source/core/dom/ClientRectList.cpp +++ b/src/third_party/WebKit/Source/core/dom/ClientRectList.cpp @@ -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& 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