Index: third_party/WebKit/Source/core/animation/SizeListPropertyFunctions.cpp |
diff --git a/third_party/WebKit/Source/core/animation/SizeListPropertyFunctions.cpp b/third_party/WebKit/Source/core/animation/SizeListPropertyFunctions.cpp |
index c1346cb9a1cec561722c02b33369c8f783f6c778..950ea6a22f9710a51419d7c9f1da0856db1864db 100644 |
--- a/third_party/WebKit/Source/core/animation/SizeListPropertyFunctions.cpp |
+++ b/third_party/WebKit/Source/core/animation/SizeListPropertyFunctions.cpp |
@@ -43,7 +43,7 @@ SizeList SizeListPropertyFunctions::getSizeList(CSSPropertyID property, |
SizeList result; |
for (const FillLayer* fillLayer = getFillLayer(property, style); |
fillLayer && fillLayer->isSizeSet(); fillLayer = fillLayer->next()) |
- result.append(fillLayer->size()); |
+ result.push_back(fillLayer->size()); |
return result; |
} |