| Index: third_party/WebKit/Source/platform/graphics/test/MockImageDecoder.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/test/MockImageDecoder.h b/third_party/WebKit/Source/platform/graphics/test/MockImageDecoder.h
|
| index 05fff2ecdc2786020b8829daa16fd3241bf81bc8..a109d96a0d1610eb2011ff7e913f7ef8e2ea7def 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/test/MockImageDecoder.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/test/MockImageDecoder.h
|
| @@ -151,7 +151,7 @@ public:
|
| {
|
| OwnPtr<MockImageDecoder> decoder = MockImageDecoder::create(m_client);
|
| decoder->setSize(m_decodedSize.width(), m_decodedSize.height());
|
| - return decoder.release();
|
| + return std::move(decoder);
|
| }
|
|
|
| private:
|
|
|