Index: third_party/WebKit/Source/core/animation/ImageListPropertyFunctions.h |
diff --git a/third_party/WebKit/Source/core/animation/ImageListPropertyFunctions.h b/third_party/WebKit/Source/core/animation/ImageListPropertyFunctions.h |
index 7150033f8a6410b19749c1b1c6c7e578d4852d56..cbea878f1d4542107f97ea2afa6cb9a58c51ec51 100644 |
--- a/third_party/WebKit/Source/core/animation/ImageListPropertyFunctions.h |
+++ b/third_party/WebKit/Source/core/animation/ImageListPropertyFunctions.h |
@@ -37,7 +37,7 @@ class ImageListPropertyFunctions { |
result.clear(); |
while (fillLayer && fillLayer->image()) { |
- result.append(fillLayer->image()); |
+ result.push_back(fillLayer->image()); |
fillLayer = fillLayer->next(); |
} |
} |