| Index: third_party/WebKit/Source/core/dom/IntersectionObserver.h
|
| diff --git a/third_party/WebKit/Source/core/dom/IntersectionObserver.h b/third_party/WebKit/Source/core/dom/IntersectionObserver.h
|
| index ae8eccaed290c150e54a51c6fd8f0e2a381737ac..067dba5257faec88e2bf47741c233d00529fe4fe 100644
|
| --- a/third_party/WebKit/Source/core/dom/IntersectionObserver.h
|
| +++ b/third_party/WebKit/Source/core/dom/IntersectionObserver.h
|
| @@ -32,8 +32,11 @@ public:
|
| void observe(Element*, ExceptionState&);
|
| void unobserve(Element*, ExceptionState&);
|
| HeapVector<Member<IntersectionObserverEntry>> takeRecords();
|
| + Element* root() const;
|
| + String rootMargin() const;
|
| + const Vector<float>& thresholds() const { return m_thresholds; }
|
|
|
| - Node* root() const { return m_root.get(); }
|
| + Node* rootNode() const { return m_root.get(); }
|
| LayoutObject* rootLayoutObject() const;
|
| bool hasPercentMargin() const;
|
| const Length& topMargin() const { return m_topMargin; }
|
|
|