Chromium Code Reviews| Index: third_party/WebKit/Source/platform/graphics/ImageBufferSurface.cpp |
| diff --git a/third_party/WebKit/Source/platform/graphics/ImageBufferSurface.cpp b/third_party/WebKit/Source/platform/graphics/ImageBufferSurface.cpp |
| index 9bf60796d027bd4089bce72b1922b06ad77deb16..1d1ad3629e5a18e13a43d23549667c7b95ad8a0e 100644 |
| --- a/third_party/WebKit/Source/platform/graphics/ImageBufferSurface.cpp |
| +++ b/third_party/WebKit/Source/platform/graphics/ImageBufferSurface.cpp |
| @@ -74,7 +74,7 @@ void ImageBufferSurface::draw(GraphicsContext& context, const FloatRect& destRec |
| if (!snapshot) |
| return; |
| - RefPtr<Image> image = StaticBitmapImage::create(snapshot.release()); |
| + RefPtr<Image> image = StaticBitmapImage::create(snapshot.release(), true); |
|
Justin Novosad
2016/01/07 17:12:01
See Rule 10 of the Names section of the style guid
xidachen
2016/01/08 18:07:55
Acknowledged.
|
| context.drawImage(image.get(), destRect, srcRect, op); |
| } |