| Index: Source/core/html/canvas/CanvasRenderingContext2D.h
|
| diff --git a/Source/core/html/canvas/CanvasRenderingContext2D.h b/Source/core/html/canvas/CanvasRenderingContext2D.h
|
| index 00f74f5a287e122f25591b121fba6be8e8b45cf7..8493b10b149c69a3c77bbe69dcf9819bea37bfaa 100644
|
| --- a/Source/core/html/canvas/CanvasRenderingContext2D.h
|
| +++ b/Source/core/html/canvas/CanvasRenderingContext2D.h
|
| @@ -202,13 +202,14 @@ public:
|
| PassRefPtr<ImageData> createImageData(PassRefPtr<ImageData>, ExceptionState&) const;
|
| PassRefPtr<ImageData> createImageData(float width, float height, ExceptionState&) const;
|
| PassRefPtr<ImageData> getImageData(float sx, float sy, float sw, float sh, ExceptionState&) const;
|
| - PassRefPtr<ImageData> webkitGetImageDataHD(float sx, float sy, float sw, float sh, ExceptionState&) const;
|
| void putImageData(ImageData*, float dx, float dy, ExceptionState&);
|
| void putImageData(ImageData*, float dx, float dy, float dirtyX, float dirtyY, float dirtyWidth, float dirtyHeight, ExceptionState&);
|
| - void webkitPutImageDataHD(ImageData*, float dx, float dy, ExceptionState&);
|
| - void webkitPutImageDataHD(ImageData*, float dx, float dy, float dirtyX, float dirtyY, float dirtyWidth, float dirtyHeight, ExceptionState&);
|
|
|
| - float webkitBackingStorePixelRatio() const { return canvas()->deviceScaleFactor(); }
|
| + // Slated for deprecation:
|
| + void webkitPutImageDataHD(ImageData* image, float dx, float dy, ExceptionState& e) { putImageData(image, dx, dy, e); }
|
| + void webkitPutImageDataHD(ImageData* image, float dx, float dy, float dirtyX, float dirtyY, float dirtyWidth, float dirtyHeight, ExceptionState& e) { putImageData(image, dx, dy, dirtyX, dirtyY, dirtyWidth, dirtyHeight, e); }
|
| + PassRefPtr<ImageData> webkitGetImageDataHD(float sx, float sy, float sw, float sh, ExceptionState&) const;
|
| + float webkitBackingStorePixelRatio() const { return 1; }
|
|
|
| void reset();
|
|
|
| @@ -317,9 +318,6 @@ private:
|
| template<class T> void fullCanvasCompositedFill(const T&);
|
| template<class T> void fullCanvasCompositedDrawImage(T*, const FloatRect&, const FloatRect&, CompositeOperator);
|
|
|
| - PassRefPtr<ImageData> getImageData(ImageBuffer::CoordinateSystem, float sx, float sy, float sw, float sh, ExceptionState&) const;
|
| - void putImageData(ImageData*, ImageBuffer::CoordinateSystem, float dx, float dy, float dirtyX, float dirtyY, float dirtyWidth, float dirtyHeight, ExceptionState&);
|
| -
|
| bool focusRingCallIsValid(const Path&, Element*);
|
| void updateFocusRingAccessibility(const Path&, Element*);
|
| void drawFocusRing(const Path&);
|
|
|