| Index: third_party/WebKit/Source/platform/graphics/Pattern.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/Pattern.cpp b/third_party/WebKit/Source/platform/graphics/Pattern.cpp
|
| index 63ae9480acb8b76a75a115e0cae3a258cad873f2..041c14ad316639ba61e1ca5c533f88ad69e47e52 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/Pattern.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/Pattern.cpp
|
| @@ -39,7 +39,7 @@ namespace blink {
|
|
|
| PassRefPtr<Pattern> Pattern::createImagePattern(PassRefPtr<Image> tileImage, RepeatMode repeatMode)
|
| {
|
| - return ImagePattern::create(tileImage, repeatMode);
|
| + return ImagePattern::create(std::move(tileImage), repeatMode);
|
| }
|
|
|
| PassRefPtr<Pattern> Pattern::createPicturePattern(sk_sp<SkPicture> picture,
|
|
|