| Index: third_party/WebKit/Source/platform/graphics/ImageSource.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/ImageSource.cpp b/third_party/WebKit/Source/platform/graphics/ImageSource.cpp
|
| index 3abcd4283c5e7907232d1cb8cf07454dcbaf203c..a391d97559e97491db8427e573903b208d3c7e8a 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/ImageSource.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/ImageSource.cpp
|
| @@ -52,7 +52,7 @@ bool ImageSource::setData(PassRefPtr<SharedBuffer> passData,
|
| m_allDataReceived = allDataReceived;
|
|
|
| if (m_decoder) {
|
| - m_decoder->setData(data.release(), allDataReceived);
|
| + m_decoder->setData(std::move(data), allDataReceived);
|
| // If the decoder is pre-instantiated, it means we've already validated the
|
| // data/signature at some point.
|
| return true;
|
|
|