| Index: third_party/WebKit/Source/core/css/CSSImageGeneratorValue.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSImageGeneratorValue.cpp b/third_party/WebKit/Source/core/css/CSSImageGeneratorValue.cpp
|
| index 600f0b5dda7178e859daffc0e1e5215a59572b71..cb4256943d0bdba8e4b9e64c80d82978c62f30c3 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSImageGeneratorValue.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSImageGeneratorValue.cpp
|
| @@ -115,7 +115,7 @@ Image* CSSImageGeneratorValue::getImage(const LayoutObject* layoutObject, const
|
|
|
| void CSSImageGeneratorValue::putImage(const IntSize& size, PassRefPtr<Image> image)
|
| {
|
| - m_images.add(size, image);
|
| + m_images.add(size, std::move(image));
|
| }
|
|
|
| PassRefPtr<Image> CSSImageGeneratorValue::image(const LayoutObject& layoutObject, const IntSize& size, float zoom)
|
|
|