| Index: Source/core/dom/TouchList.h
|
| diff --git a/Source/core/dom/TouchList.h b/Source/core/dom/TouchList.h
|
| index a836e243f090eb78c293f682c1f719ee2c0088ea..0e33557975b6c74fa98935b3e6d780909f890000 100644
|
| --- a/Source/core/dom/TouchList.h
|
| +++ b/Source/core/dom/TouchList.h
|
| @@ -57,15 +57,11 @@ public:
|
| void trace(Visitor*);
|
|
|
| private:
|
| - TouchList()
|
| - {
|
| - ScriptWrappable::init(this);
|
| - }
|
| + TouchList() { }
|
|
|
| TouchList(WillBeHeapVector<RefPtrWillBeMember<Touch> >& touches)
|
| {
|
| m_values.swap(touches);
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| WillBeHeapVector<RefPtrWillBeMember<Touch> > m_values;
|
|
|