Index: third_party/WebKit/Source/core/css/CSSValueList.cpp |
diff --git a/third_party/WebKit/Source/core/css/CSSValueList.cpp b/third_party/WebKit/Source/core/css/CSSValueList.cpp |
index fac73e792404af9d4564c4b06ad368a013f65138..99b0ce793b228909a910a920e96b5efa087a188f 100644 |
--- a/third_party/WebKit/Source/core/css/CSSValueList.cpp |
+++ b/third_party/WebKit/Source/core/css/CSSValueList.cpp |
@@ -48,7 +48,7 @@ bool CSSValueList::removeAll(const CSSValue& val) { |
for (int index = m_values.size() - 1; index >= 0; --index) { |
Member<const CSSValue>& value = m_values.at(index); |
if (value && *value == val) { |
- m_values.remove(index); |
+ m_values.erase(index); |
found = true; |
} |
} |