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

Unified Diff: third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h

Issue 2423753002: [GeometryInterface] add transformPoint(point) function. (Closed)
Patch Set: update test msg. Created 4 years, 1 month 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: third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
diff --git a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
index 9a8279e09f8333a8258af5f2f2881166522d15bb..ba5ef3173a4066a31050a7ec73e5488aa6b7f15b 100644
--- a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
+++ b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.h
@@ -16,6 +16,8 @@ namespace blink {
class DOMMatrix;
class DOMMatrixInit;
+class DOMPoint;
+class DOMPointInit;
class CORE_EXPORT DOMMatrixReadOnly
: public GarbageCollectedFinalized<DOMMatrixReadOnly>,
@@ -83,6 +85,8 @@ class CORE_EXPORT DOMMatrixReadOnly
DOMMatrix* flipY();
DOMMatrix* inverse();
+ DOMPoint* transformPoint(const DOMPointInit&);
+
DOMFloat32Array* toFloat32Array() const;
DOMFloat64Array* toFloat64Array() const;

Powered by Google App Engine
This is Rietveld 408576698