| Index: third_party/WebKit/Source/core/dom/DOMRect.h
|
| diff --git a/third_party/WebKit/Source/core/dom/DOMRect.h b/third_party/WebKit/Source/core/dom/DOMRect.h
|
| index 89746a79d20d8cd14c9c8019cf200d04f8bc51d7..b3d66dd098ba8266cecd37f9c2916b8cd6e2f001 100644
|
| --- a/third_party/WebKit/Source/core/dom/DOMRect.h
|
| +++ b/third_party/WebKit/Source/core/dom/DOMRect.h
|
| @@ -11,6 +11,9 @@
|
|
|
| namespace blink {
|
|
|
| +class DOMRect;
|
| +class DOMRectInit;
|
| +
|
| class CORE_EXPORT DOMRect final : public DOMRectReadOnly {
|
| DEFINE_WRAPPERTYPEINFO();
|
|
|
| @@ -19,6 +22,7 @@ class CORE_EXPORT DOMRect final : public DOMRectReadOnly {
|
| double y = 0,
|
| double width = 0,
|
| double height = 0);
|
| + static DOMRect* fromRect(const DOMRectInit&);
|
|
|
| void setX(double x) { m_x = x; }
|
| void setY(double y) { m_y = y; }
|
|
|