| Index: third_party/WebKit/Source/core/dom/TouchList.h
|
| diff --git a/third_party/WebKit/Source/core/dom/TouchList.h b/third_party/WebKit/Source/core/dom/TouchList.h
|
| index 8da2b54d663826878e7f82e80ca2d3340d1962ef..df657dc9550928e0573a17fc4a1c88b4c82d757c 100644
|
| --- a/third_party/WebKit/Source/core/dom/TouchList.h
|
| +++ b/third_party/WebKit/Source/core/dom/TouchList.h
|
| @@ -56,7 +56,7 @@ class CORE_EXPORT TouchList final : public GarbageCollected<TouchList>,
|
| Touch* item(unsigned);
|
| const Touch* item(unsigned) const;
|
|
|
| - void append(Touch* touch) { m_values.append(touch); }
|
| + void append(Touch* touch) { m_values.push_back(touch); }
|
|
|
| DECLARE_TRACE();
|
|
|
|
|