| Index: Source/core/html/HTMLCanvasElement.h
|
| diff --git a/Source/core/html/HTMLCanvasElement.h b/Source/core/html/HTMLCanvasElement.h
|
| index 6be415675562c61434087b735b415dd7f89d6e67..2be967f6521e3bf1943fd013585f4157295e72b3 100644
|
| --- a/Source/core/html/HTMLCanvasElement.h
|
| +++ b/Source/core/html/HTMLCanvasElement.h
|
| @@ -117,8 +117,10 @@ public:
|
|
|
| void paint(GraphicsContext*, const LayoutRect&);
|
|
|
| - GraphicsContext* drawingContext() const;
|
| - GraphicsContext* existingDrawingContext() const;
|
| + GraphicsContext* drawingContext() const; // Deprecated: use drawingCanvas
|
| + GraphicsContext* existingDrawingContext() const; // Deprecated: use existingDrawingCanvas
|
| + SkCanvas* drawingCanvas() const;
|
| + SkCanvas* existingDrawingCanvas() const;
|
|
|
| CanvasRenderingContext* renderingContext() const { return m_context.get(); }
|
|
|
|
|