Index: third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.cpp |
diff --git a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.cpp b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.cpp |
index 1b2c9b31d142a2da86aa9038e3d81ef17d032f19..c4c151cdff6c4fdab7e9af4bdc5ad8323443259f 100644 |
--- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.cpp |
+++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.cpp |
@@ -34,7 +34,7 @@ DisplayItem& DisplayItemList::appendByMoving(DisplayItem& item) { |
} |
void DisplayItemList::appendVisualRect(const IntRect& visualRect) { |
- m_visualRects.append(visualRect); |
+ m_visualRects.push_back(visualRect); |
} |
DisplayItemList::Range<DisplayItemList::iterator> |