| 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 ecf68c3c88f1a9575bc22476d4c0671976b3b6c8..0a168b9c6378ae18ef429de35e03c0d1ab66468c 100644
|
| --- a/third_party/WebKit/Source/core/dom/IntersectionObserver.h
|
| +++ b/third_party/WebKit/Source/core/dom/IntersectionObserver.h
|
| @@ -56,9 +56,12 @@ public:
|
|
|
| DECLARE_TRACE();
|
|
|
| -private:
|
| +// private:
|
| explicit IntersectionObserver(IntersectionObserverCallback&, Node&, const Vector<Length>& rootMargin, const Vector<float>& thresholds);
|
| - void clearWeakMembers(Visitor*);
|
| + void observe(Element*);
|
| + void unobserve(Element*);
|
| + private:
|
| + void clearWeakMembers(Visitor*);
|
|
|
| Member<IntersectionObserverCallback> m_callback;
|
| WeakMember<Node> m_root;
|
|
|