Index: third_party/WebKit/Source/core/svg/SVGStringList.cpp |
diff --git a/third_party/WebKit/Source/core/svg/SVGStringList.cpp b/third_party/WebKit/Source/core/svg/SVGStringList.cpp |
index 2549e65eabc77b367a44f0445b0f7a20b5f0c72a..15769d94b6c39ef11ae413a2b6041ba7d93f8c52 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGStringList.cpp |
+++ b/third_party/WebKit/Source/core/svg/SVGStringList.cpp |
@@ -63,7 +63,7 @@ String SVGStringList::removeItem(size_t index, ExceptionState& exceptionState) { |
return String(); |
String oldItem = m_values.at(index); |
- m_values.remove(index); |
+ m_values.erase(index); |
return oldItem; |
} |