| 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 7be1e65ab517dccbc46685103cf448c47bca204a..b967171ef7eaaa503f805f4cca17ac8717e9f088 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp
|
| @@ -433,7 +433,7 @@ void DrawingBuffer::mailboxReleasedGpu(RefPtr<ColorBuffer> colorBuffer,
|
| while (m_recycledColorBufferQueue.size() >= cacheLimit)
|
| m_recycledColorBufferQueue.takeLast();
|
|
|
| - m_recycledColorBufferQueue.prepend(colorBuffer);
|
| + m_recycledColorBufferQueue.push_front(colorBuffer);
|
| }
|
|
|
| void DrawingBuffer::mailboxReleasedSoftware(
|
|
|