| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef IntersectionObserver_h | 5 #ifndef IntersectionObserver_h |
| 6 #define IntersectionObserver_h | 6 #define IntersectionObserver_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptWrappable.h" | 8 #include "bindings/core/v8/ScriptWrappable.h" |
| 9 #include "core/dom/IntersectionObservation.h" | 9 #include "core/dom/IntersectionObservation.h" |
| 10 #include "core/dom/IntersectionObserverEntry.h" | 10 #include "core/dom/IntersectionObserverEntry.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 class IntersectionObserverInit; | 22 class IntersectionObserverInit; |
| 23 | 23 |
| 24 class CORE_EXPORT IntersectionObserver final : public GarbageCollectedFinalized<
IntersectionObserver>, public ScriptWrappable { | 24 class CORE_EXPORT IntersectionObserver final : public GarbageCollectedFinalized<
IntersectionObserver>, public ScriptWrappable { |
| 25 DEFINE_WRAPPERTYPEINFO(); | 25 DEFINE_WRAPPERTYPEINFO(); |
| 26 | 26 |
| 27 public: | 27 public: |
| 28 static IntersectionObserver* create(const IntersectionObserverInit&, Interse
ctionObserverCallback&, ExceptionState&); | 28 static IntersectionObserver* create(const IntersectionObserverInit&, Interse
ctionObserverCallback&, ExceptionState&); |
| 29 static void resumeSuspendedObservers(); | 29 static void resumeSuspendedObservers(); |
| 30 | 30 |
| 31 // API methods | 31 // API methods |
| 32 void observe(Element*); | 32 void observe(Element*, ExceptionState&); |
| 33 void unobserve(Element*); | 33 void unobserve(Element*, ExceptionState&); |
| 34 void disconnect(); | 34 void disconnect(ExceptionState&); |
| 35 HeapVector<Member<IntersectionObserverEntry>> takeRecords(); | 35 HeapVector<Member<IntersectionObserverEntry>> takeRecords(ExceptionState&); |
| 36 |
| 37 // API attributes |
| 36 Element* root() const; | 38 Element* root() const; |
| 37 String rootMargin() const; | 39 String rootMargin() const; |
| 38 const Vector<float>& thresholds() const { return m_thresholds; } | 40 const Vector<float>& thresholds() const { return m_thresholds; } |
| 39 | 41 |
| 40 Node* rootNode() const { return m_root.get(); } | 42 Node* rootNode() const { return m_root.get(); } |
| 41 LayoutObject* rootLayoutObject() const; | 43 LayoutObject* rootLayoutObject() const; |
| 42 const Length& topMargin() const { return m_topMargin; } | 44 const Length& topMargin() const { return m_topMargin; } |
| 43 const Length& rightMargin() const { return m_rightMargin; } | 45 const Length& rightMargin() const { return m_rightMargin; } |
| 44 const Length& bottomMargin() const { return m_bottomMargin; } | 46 const Length& bottomMargin() const { return m_bottomMargin; } |
| 45 const Length& leftMargin() const { return m_leftMargin; } | 47 const Length& leftMargin() const { return m_leftMargin; } |
| (...skipping 19 matching lines...) Expand all Loading... |
| 65 Vector<float> m_thresholds; | 67 Vector<float> m_thresholds; |
| 66 Length m_topMargin; | 68 Length m_topMargin; |
| 67 Length m_rightMargin; | 69 Length m_rightMargin; |
| 68 Length m_bottomMargin; | 70 Length m_bottomMargin; |
| 69 Length m_leftMargin; | 71 Length m_leftMargin; |
| 70 }; | 72 }; |
| 71 | 73 |
| 72 } // namespace blink | 74 } // namespace blink |
| 73 | 75 |
| 74 #endif // IntersectionObserver_h | 76 #endif // IntersectionObserver_h |
| OLD | NEW |