| Index: third_party/WebKit/Source/core/frame/ImageBitmap.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/ImageBitmap.cpp b/third_party/WebKit/Source/core/frame/ImageBitmap.cpp
|
| index 64f5b0a215e0cdaf9ee2ad44d64f257cfb7b1939..58fb46e95af4d83aae6165c2ce67d52fffb34ba8 100644
|
| --- a/third_party/WebKit/Source/core/frame/ImageBitmap.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/ImageBitmap.cpp
|
| @@ -7,6 +7,7 @@
|
| #include "core/html/HTMLCanvasElement.h"
|
| #include "core/html/HTMLVideoElement.h"
|
| #include "core/html/ImageData.h"
|
| +#include "platform/graphics/AcceleratedStaticBitmapImage.h"
|
| #include "platform/graphics/skia/SkiaUtils.h"
|
| #include "platform/image-decoders/ImageDecoder.h"
|
| #include "third_party/skia/include/core/SkCanvas.h"
|
| @@ -516,7 +517,7 @@ ImageBitmap::ImageBitmap(PassRefPtr<StaticBitmapImage> image)
|
|
|
| ImageBitmap::ImageBitmap(WebExternalTextureMailbox& mailbox)
|
| {
|
| - m_image = StaticBitmapImage::create(mailbox);
|
| + m_image = AcceleratedStaticBitmapImage::create(mailbox);
|
| }
|
|
|
| PassRefPtr<StaticBitmapImage> ImageBitmap::transfer()
|
|
|