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

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

Issue 2600663002: Adding matrixTrasnform to DOMPointReadOnly interfaces as following spec. (Closed)
Patch Set: Adding matrixTrasnform to DOMPointReadOnly interfaces as following spec. Created 3 years, 12 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: third_party/WebKit/Source/core/dom/DOMPointReadOnly.h
diff --git a/third_party/WebKit/Source/core/dom/DOMPointReadOnly.h b/third_party/WebKit/Source/core/dom/DOMPointReadOnly.h
index d5ebc366a75fe0ab5b98edc8ca0b6e4dfc3bf035..61d617624f6b3bb830d641fdf5d09a5ab6c141e9 100644
--- a/third_party/WebKit/Source/core/dom/DOMPointReadOnly.h
+++ b/third_party/WebKit/Source/core/dom/DOMPointReadOnly.h
@@ -11,9 +11,12 @@
namespace blink {
-class ScriptValue;
-class ScriptState;
+class DOMMatrixInit;
+class DOMPoint;
class DOMPointInit;
+class ExceptionState;
+class ScriptState;
+class ScriptValue;
class CORE_EXPORT DOMPointReadOnly : public GarbageCollected<DOMPointReadOnly>,
public ScriptWrappable {
@@ -31,7 +34,8 @@ class CORE_EXPORT DOMPointReadOnly : public GarbageCollected<DOMPointReadOnly>,
DEFINE_INLINE_TRACE() {}
ScriptValue toJSONForBinding(ScriptState*) const;
-
+ DOMPoint* matrixTransform(DOMMatrixInit&, ExceptionState&);
+
protected:
DOMPointReadOnly(double x, double y, double z, double w);

Powered by Google App Engine
This is Rietveld 408576698