| 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);
|
|
|
|
|