| Index: third_party/WebKit/Source/modules/imagebitmap/ImageBitmapRenderingContext.h
|
| diff --git a/third_party/WebKit/Source/modules/imagebitmap/ImageBitmapRenderingContext.h b/third_party/WebKit/Source/modules/imagebitmap/ImageBitmapRenderingContext.h
|
| index e6b2cccbdc2fd214400cce05bb9b2f066820334b..24312b46d32053ed8fbc5164a06aec921f788322 100644
|
| --- a/third_party/WebKit/Source/modules/imagebitmap/ImageBitmapRenderingContext.h
|
| +++ b/third_party/WebKit/Source/modules/imagebitmap/ImageBitmapRenderingContext.h
|
| @@ -32,7 +32,6 @@ public:
|
|
|
| // CanvasRenderingContext implementation
|
| ContextType getContextType() const override { return CanvasRenderingContext::ContextImageBitmap; }
|
| - bool hasAlpha() const override { return m_hasAlpha; }
|
| void setIsHidden(bool) override { }
|
| bool isContextLost() const override { return false; }
|
| bool paint(GraphicsContext&, const IntRect&) override;
|
| @@ -48,9 +47,8 @@ public:
|
| virtual ~ImageBitmapRenderingContext();
|
|
|
| private:
|
| - ImageBitmapRenderingContext(HTMLCanvasElement*, CanvasContextCreationAttributes, Document&);
|
| + ImageBitmapRenderingContext(HTMLCanvasElement*, const CanvasContextCreationAttributes&, Document&);
|
|
|
| - bool m_hasAlpha;
|
| RefPtr<Image> m_image;
|
| };
|
|
|
|
|