| Index: third_party/WebKit/Source/core/dom/DOMRectReadOnly.h
|
| diff --git a/third_party/WebKit/Source/core/dom/DOMRectReadOnly.h b/third_party/WebKit/Source/core/dom/DOMRectReadOnly.h
|
| index 1a14e25499adaf9440660adb4b30c660f3ce50f2..957dfc9373b80b5fdfa6960466e0c33a10933545 100644
|
| --- a/third_party/WebKit/Source/core/dom/DOMRectReadOnly.h
|
| +++ b/third_party/WebKit/Source/core/dom/DOMRectReadOnly.h
|
| @@ -11,6 +11,7 @@
|
|
|
| namespace blink {
|
|
|
| +class DOMRectInit;
|
| class ScriptValue;
|
| class ScriptState;
|
|
|
| @@ -23,6 +24,7 @@ class CORE_EXPORT DOMRectReadOnly : public GarbageCollected<DOMRectReadOnly>,
|
| double y,
|
| double width,
|
| double height);
|
| + static DOMRectReadOnly* fromRect(const DOMRectInit&);
|
|
|
| double x() const { return m_x; }
|
| double y() const { return m_y; }
|
|
|