| Index: third_party/WebKit/Source/platform/graphics/paint/DrawingDisplayItem.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/DrawingDisplayItem.cpp b/third_party/WebKit/Source/platform/graphics/paint/DrawingDisplayItem.cpp
|
| index 493e6c3754a565b577ac04997672a4e8886482a8..c319de5e2da6716fb75b8ca5a9bf571e36b09629 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/DrawingDisplayItem.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/DrawingDisplayItem.cpp
|
| @@ -68,7 +68,7 @@ static SkBitmap recordToBitmap(const PaintRecord* record) {
|
| SkBitmap bitmap;
|
| SkRect rect = record->cullRect();
|
| bitmap.allocPixels(SkImageInfo::MakeN32Premul(rect.width(), rect.height()));
|
| - PaintCanvas canvas(bitmap);
|
| + SkiaPaintCanvas canvas(bitmap);
|
| canvas.clear(SK_ColorTRANSPARENT);
|
| canvas.translate(-rect.x(), -rect.y());
|
| canvas.drawPicture(record);
|
|
|