Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / dom / DOMStringList.h
index 68fd07d..04398f3 100644 (file)
@@ -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<DOMStringList>, public ScriptWrappable {
+    DEFINE_WRAPPERTYPEINFO();
 public:
     static PassRefPtrWillBeRawPtr<DOMStringList> create()
     {
@@ -59,10 +60,7 @@ public:
     void trace(Visitor*) { }
 
 private:
-    DOMStringList()
-    {
-        ScriptWrappable::init(this);
-    }
+    DOMStringList() { }
 
     Vector<String> m_strings;
 };
@@ -70,4 +68,3 @@ private:
 } // namespace blink
 
 #endif // DOMStringList_h
-