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 ff095132d600bab6628d4bf82c7b6fcbba41bfff..f8330d76f087e250d84685407d7b7bfd59a118f6 100644 |
--- a/third_party/WebKit/Source/platform/DragImage.cpp |
+++ b/third_party/WebKit/Source/platform/DragImage.cpp |
@@ -259,7 +259,7 @@ std::unique_ptr<DragImage> DragImage::create(const KURL& url, |
const float DragLabelRadius = 5; |
IntRect rect(IntPoint(), imageSize); |
- SkPaint backgroundPaint; |
+ PaintFlags backgroundPaint; |
backgroundPaint.setColor(SkColorSetRGB(140, 140, 140)); |
backgroundPaint.setAntiAlias(true); |
SkRRect rrect; |
@@ -268,7 +268,7 @@ std::unique_ptr<DragImage> DragImage::create(const KURL& url, |
buffer->canvas()->drawRRect(rrect, backgroundPaint); |
// Draw the text |
- SkPaint textPaint; |
+ PaintFlags textPaint; |
if (drawURLString) { |
if (clipURLString) |
urlString = StringTruncator::centerTruncate( |