Index: third_party/WebKit/Source/core/inspector/InspectorInputAgent.cpp |
diff --git a/third_party/WebKit/Source/core/inspector/InspectorInputAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorInputAgent.cpp |
index 025abea4f3a05787702d0fc6b9b0cf76221c1b33..6d0cb045935a9705ff12030cf12f74d9432ed20b 100644 |
--- a/third_party/WebKit/Source/core/inspector/InspectorInputAgent.cpp |
+++ b/third_party/WebKit/Source/core/inspector/InspectorInputAgent.cpp |
@@ -115,7 +115,7 @@ class SyntheticInspectorTouchEvent : public blink::PlatformTouchEvent { |
} |
void append(const blink::PlatformTouchPoint& point) { |
- m_touchPoints.append(point); |
+ m_touchPoints.push_back(point); |
} |
}; |