| 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 NodeIntersectionObserverData_h | 5 #ifndef NodeIntersectionObserverData_h |
| 6 #define NodeIntersectionObserverData_h | 6 #define NodeIntersectionObserverData_h |
| 7 | 7 |
| 8 #include "platform/heap/Handle.h" | 8 #include "platform/heap/Handle.h" |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 IntersectionObservation* getObservationFor(IntersectionObserver&); | 22 IntersectionObservation* getObservationFor(IntersectionObserver&); |
| 23 void addObservation(IntersectionObservation&); | 23 void addObservation(IntersectionObservation&); |
| 24 void removeObservation(IntersectionObserver&); | 24 void removeObservation(IntersectionObserver&); |
| 25 void activateValidIntersectionObservers(Node&); | 25 void activateValidIntersectionObservers(Node&); |
| 26 void deactivateAllIntersectionObservers(Node&); | 26 void deactivateAllIntersectionObservers(Node&); |
| 27 | 27 |
| 28 #if !ENABLE(OILPAN) | 28 #if !ENABLE(OILPAN) |
| 29 void dispose(); | 29 void dispose(); |
| 30 #endif | 30 #endif |
| 31 | 31 |
| 32 WeakPtrWillBeRawPtr<Node> createWeakPtr(Node*); | 32 RawPtr<Node> createWeakPtr(Node*); |
| 33 | 33 |
| 34 private: | 34 private: |
| 35 // IntersectionObservers for which the Node owning this data is root. | 35 // IntersectionObservers for which the Node owning this data is root. |
| 36 HeapHashSet<WeakMember<IntersectionObserver>> m_intersectionObservers; | 36 HeapHashSet<WeakMember<IntersectionObserver>> m_intersectionObservers; |
| 37 // IntersectionObservations for which the Node owning this data is target. | 37 // IntersectionObservations for which the Node owning this data is target. |
| 38 HeapHashMap<Member<IntersectionObserver>, Member<IntersectionObservation>> m
_intersectionObservations; | 38 HeapHashMap<Member<IntersectionObserver>, Member<IntersectionObservation>> m
_intersectionObservations; |
| 39 | 39 |
| 40 #if !ENABLE(OILPAN) | 40 #if !ENABLE(OILPAN) |
| 41 OwnPtr<WeakPtrFactory<Node>> m_weakPointerFactory; | 41 OwnPtr<WeakPtrFactory<Node>> m_weakPointerFactory; |
| 42 #endif | 42 #endif |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 } // namespace blink | 45 } // namespace blink |
| 46 | 46 |
| 47 #endif // NodeIntersectionObserverData_h | 47 #endif // NodeIntersectionObserverData_h |
| OLD | NEW |