Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(627)

Unified Diff: Source/core/dom/TouchList.h

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed a review comment. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/Touch.cpp ('k') | Source/core/dom/TreeWalker.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/core/dom/Touch.cpp ('k') | Source/core/dom/TreeWalker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698