[WebIDL] Move Touch related bindings in Document to their own IDL file
Created attachment 313220 [details] Patch
Created attachment 313230 [details] Patch
Created attachment 313241 [details] Patch
Created attachment 313245 [details] Patch
Created attachment 313246 [details] Patch
Created attachment 313247 [details] Patch
Comment on attachment 313247 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=313247&action=review > Source/WebCore/dom/TouchList.h:61 > + m_values.reserveInitialCapacity(touches.size()); Why not just WTFMove touches into m_values?
(In reply to Alex Christensen from comment #7) > Comment on attachment 313247 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=313247&action=review > > > Source/WebCore/dom/TouchList.h:61 > > + m_values.reserveInitialCapacity(touches.size()); > > Why not just WTFMove touches into m_values? Can't move Vector<std::reference_wrapper<Touch>> into Vector<Ref<Touch>>. Thanks for the review.
Committed r218529: <http://trac.webkit.org/changeset/218529>