| Index: third_party/WebKit/Source/core/dom/DOMPoint.h
|
| diff --git a/third_party/WebKit/Source/core/dom/DOMPoint.h b/third_party/WebKit/Source/core/dom/DOMPoint.h
|
| index 695b642a62481dac9637a0dcd6ff409658d01fe7..1508bfe9ea9cc7c9fb0818a3b30f895f32500aad 100644
|
| --- a/third_party/WebKit/Source/core/dom/DOMPoint.h
|
| +++ b/third_party/WebKit/Source/core/dom/DOMPoint.h
|
| @@ -18,6 +18,7 @@ class CORE_EXPORT DOMPoint final : public DOMPointReadOnly {
|
| public:
|
| static DOMPoint* create(const DOMPointInit&);
|
| static DOMPoint* create(double x, double y, double z = 0, double w = 1);
|
| + static DOMPoint* fromPoint(const DOMPointInit&);
|
|
|
| void setX(double x) { m_x = x; }
|
| void setY(double y) { m_y = y; }
|
|
|