| 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 4023f3420e751291d9cc97de1e9cabda9e7bc632..2a8d2d6cf74323f596c7a73317deb47a8ad79753 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp
|
| @@ -230,7 +230,7 @@ std::unique_ptr<cc::SharedBitmap> DrawingBuffer::createOrRecycleBitmap() {
|
| m_recycledBitmaps.shrink(it - m_recycledBitmaps.begin());
|
|
|
| if (!m_recycledBitmaps.isEmpty()) {
|
| - RecycledBitmap recycled = std::move(m_recycledBitmaps.last());
|
| + RecycledBitmap recycled = std::move(m_recycledBitmaps.back());
|
| m_recycledBitmaps.pop_back();
|
| DCHECK(recycled.size == m_size);
|
| return std::move(recycled.bitmap);
|
|
|