| Index: third_party/WebKit/Source/core/html/HTMLCanvasElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLCanvasElement.h b/third_party/WebKit/Source/core/html/HTMLCanvasElement.h
|
| index 3f01aebe408209e614620e55e71c7eb6575643dd..c337a6ea877a3593409654ef8ac69b0d8f5ee734 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLCanvasElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLCanvasElement.h
|
| @@ -169,6 +169,8 @@ public:
|
| FloatSize elementSize(const FloatSize&) const override;
|
| bool isCanvasElement() const override { return true; }
|
| bool isOpaque() const override;
|
| + int sourceWidth() override { return m_size.width(); }
|
| + int sourceHeight() override { return m_size.height(); }
|
|
|
| // ImageBufferClient implementation
|
| void notifySurfaceInvalid() override;
|
|
|