| 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 ff94d8b8f50ba02c98058d94a0caa2a61f38e8dc..37c79ec851a2c8a9cf5b8d3b057ce0cb3554f6fd 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;
|
|
|