| Index: Source/core/html/HTMLCanvasElement.h
|
| diff --git a/Source/core/html/HTMLCanvasElement.h b/Source/core/html/HTMLCanvasElement.h
|
| index 61e53bdc66764298d772f4871fc06de69dd235ae..49468ddb3141ecd9e1f9cb54577f08be66ffa513 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(); }
|
|
|
|
|