Index: third_party/WebKit/Source/platform/DragImage.cpp |
diff --git a/third_party/WebKit/Source/platform/DragImage.cpp b/third_party/WebKit/Source/platform/DragImage.cpp |
index d3e2316b7d9d07b321510422282b33c21bbcdf0f..c4cbd565dc0bbe9c09f70d9aea48cad7add89788 100644 |
--- a/third_party/WebKit/Source/platform/DragImage.cpp |
+++ b/third_party/WebKit/Source/platform/DragImage.cpp |
@@ -167,7 +167,8 @@ std::unique_ptr<DragImage> DragImage::create( |
!resizedImage->asLegacyBitmap(&bm, SkImage::kRO_LegacyBitmapMode)) |
return nullptr; |
- return wrapUnique(new DragImage(bm, deviceScaleFactor, interpolationQuality)); |
+ return WTF::wrapUnique( |
+ new DragImage(bm, deviceScaleFactor, interpolationQuality)); |
} |
static Font deriveDragLabelFont(int size, |