Index: third_party/WebKit/Source/core/animation/InvalidatableInterpolation.cpp |
diff --git a/third_party/WebKit/Source/core/animation/InvalidatableInterpolation.cpp b/third_party/WebKit/Source/core/animation/InvalidatableInterpolation.cpp |
index ef975f9d998c912529d0cdae04d6a2f0cabd7cfe..96c6330922622547957f61aed3604eec5624cb34 100644 |
--- a/third_party/WebKit/Source/core/animation/InvalidatableInterpolation.cpp |
+++ b/third_party/WebKit/Source/core/animation/InvalidatableInterpolation.cpp |
@@ -82,7 +82,7 @@ void InvalidatableInterpolation::addConversionCheckers( |
ConversionCheckers& conversionCheckers) const { |
for (size_t i = 0; i < conversionCheckers.size(); i++) { |
conversionCheckers[i]->setType(type); |
- m_conversionCheckers.append(std::move(conversionCheckers[i])); |
+ m_conversionCheckers.push_back(std::move(conversionCheckers[i])); |
} |
} |