| Index: third_party/WebKit/Source/platform/graphics/StaticBitmapImage.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/StaticBitmapImage.cpp b/third_party/WebKit/Source/platform/graphics/StaticBitmapImage.cpp
|
| index 09e3b64b551d2e224db1dfcf3052ef253873c382..54dc733e66e6d9b76e753fe61eac6ea536f81f84 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/StaticBitmapImage.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/StaticBitmapImage.cpp
|
| @@ -35,7 +35,7 @@ void StaticBitmapImage::drawHelper(PaintCanvas* canvas,
|
| if (dstRect.isEmpty() || adjustedSrcRect.isEmpty())
|
| return; // Nothing to draw.
|
|
|
| - canvas->drawImageRect(image.get(), adjustedSrcRect, dstRect, &flags,
|
| + canvas->drawImageRect(std::move(image), adjustedSrcRect, dstRect, &flags,
|
| WebCoreClampingModeToSkiaRectConstraint(clampMode));
|
| }
|
|
|
|
|