X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fcore%2Fdom%2FDOMStringList.h;h=04398f3b7d8eaadec3967381c9ef86d534007e19;hb=3545e9f2671f595d2a2f3ee75ca0393b01e35ef6;hp=68fd07d9dc0326f0bd815bcdd421ad51255f02ca;hpb=7d210d4c7e9ba36e635eabc5b5780495f8a63292;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/core/dom/DOMStringList.h b/src/third_party/WebKit/Source/core/dom/DOMStringList.h index 68fd07d..04398f3 100644 --- a/src/third_party/WebKit/Source/core/dom/DOMStringList.h +++ b/src/third_party/WebKit/Source/core/dom/DOMStringList.h @@ -38,6 +38,7 @@ namespace blink { // FIXME: Some consumers of this class may benefit from lazily fetching items rather // than creating the list statically as is currently the only option. class DOMStringList FINAL : public RefCountedWillBeGarbageCollectedFinalized, public ScriptWrappable { + DEFINE_WRAPPERTYPEINFO(); public: static PassRefPtrWillBeRawPtr create() { @@ -59,10 +60,7 @@ public: void trace(Visitor*) { } private: - DOMStringList() - { - ScriptWrappable::init(this); - } + DOMStringList() { } Vector m_strings; }; @@ -70,4 +68,3 @@ private: } // namespace blink #endif // DOMStringList_h -