Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1184)

Unified Diff: Source/core/html/canvas/CanvasRenderingContext2D.h

Issue 24233004: Support currentTransform in 2D Canvas. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/html/canvas/CanvasRenderingContext2D.h
diff --git a/Source/core/html/canvas/CanvasRenderingContext2D.h b/Source/core/html/canvas/CanvasRenderingContext2D.h
index 46107a2e2a63580559d3bda1e19eb487bc481769..8b1ada1935729b5b22e13193ef4f431e39b682d6 100644
--- a/Source/core/html/canvas/CanvasRenderingContext2D.h
+++ b/Source/core/html/canvas/CanvasRenderingContext2D.h
@@ -57,6 +57,7 @@ class HTMLImageElement;
class HTMLVideoElement;
class ImageBitmap;
class ImageData;
+class SVGMatrix;
class TextMetrics;
typedef HashMap<String, RefPtr<MutableStylePropertySet> > MutableStylePropertyMap;
@@ -117,6 +118,8 @@ public:
void save() { ++m_unrealizedSaveCount; }
void restore();
+ SVGMatrix currentTransform() const;
Justin Novosad 2013/09/19 19:23:48 IIRC, you can't return an incomplete type. If thi
+ void setCurrentTransform(const SVGMatrix&);
void scale(float sx, float sy);
void rotate(float angleInRadians);
void translate(float tx, float ty);

Powered by Google App Engine
This is Rietveld 408576698