| 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 0c2f98a23c44a5607b1e9c6722b6dc9ec42111ca..f2544d982d26775c1e82a93cff5c31771e9e0eee 100644
|
| --- a/third_party/WebKit/Source/core/dom/DOMPointReadOnly.h
|
| +++ b/third_party/WebKit/Source/core/dom/DOMPointReadOnly.h
|
| @@ -11,6 +11,9 @@
|
|
|
| namespace blink {
|
|
|
| +class ScriptValue;
|
| +class ScriptState;
|
| +
|
| class CORE_EXPORT DOMPointReadOnly : public GarbageCollected<DOMPointReadOnly>,
|
| public ScriptWrappable {
|
| DEFINE_WRAPPERTYPEINFO();
|
| @@ -24,7 +27,9 @@ class CORE_EXPORT DOMPointReadOnly : public GarbageCollected<DOMPointReadOnly>,
|
| double w() const { return m_w; }
|
|
|
| DEFINE_INLINE_TRACE() {}
|
| -
|
| +
|
| + ScriptValue toJSONForBinding(ScriptState*) const;
|
| +
|
| protected:
|
| DOMPointReadOnly(double x, double y, double z, double w);
|
|
|
|
|