Index: third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp |
diff --git a/third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp b/third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp |
index 2b4a2a4fa1f17f807c6c71de8d1ee1730ac9a2aa..f5dca1ded28146612b52ebfe8bc9c2b0e7fbcba5 100644 |
--- a/third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp |
+++ b/third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp |
@@ -439,7 +439,7 @@ void DrawingBuffer::mailboxReleasedSoftware( |
return; // Just delete the bitmap. |
RecycledBitmap recycled = {std::move(bitmap), m_size}; |
- m_recycledBitmaps.append(std::move(recycled)); |
+ m_recycledBitmaps.push_back(std::move(recycled)); |
} |
PassRefPtr<StaticBitmapImage> DrawingBuffer::transferToStaticBitmapImage() { |