| Index: third_party/WebKit/Source/core/dom/MutationObserverInterestGroup.h
|
| diff --git a/third_party/WebKit/Source/core/dom/MutationObserverInterestGroup.h b/third_party/WebKit/Source/core/dom/MutationObserverInterestGroup.h
|
| index 7182c6cccb84b118110dee7160f750e39bb9a4e4..175948453c7cc2ab2988a5f3605a6fe3ebc5053f 100644
|
| --- a/third_party/WebKit/Source/core/dom/MutationObserverInterestGroup.h
|
| +++ b/third_party/WebKit/Source/core/dom/MutationObserverInterestGroup.h
|
| @@ -76,11 +76,11 @@ public:
|
|
|
| private:
|
| static PassOwnPtrWillBeRawPtr<MutationObserverInterestGroup> createIfNeeded(Node& target, MutationObserver::MutationType, MutationRecordDeliveryOptions oldValueFlag, const QualifiedName* attributeName = 0);
|
| - MutationObserverInterestGroup(WillBeHeapHashMap<RawPtrWillBeMember<MutationObserver>, MutationRecordDeliveryOptions>& observers, MutationRecordDeliveryOptions oldValueFlag);
|
| + MutationObserverInterestGroup(WillBeHeapHashMap<RefPtrWillBeMember<MutationObserver>, MutationRecordDeliveryOptions>& observers, MutationRecordDeliveryOptions oldValueFlag);
|
|
|
| bool hasOldValue(MutationRecordDeliveryOptions options) { return options & m_oldValueFlag; }
|
|
|
| - WillBeHeapHashMap<RawPtrWillBeMember<MutationObserver>, MutationRecordDeliveryOptions> m_observers;
|
| + WillBeHeapHashMap<RefPtrWillBeMember<MutationObserver>, MutationRecordDeliveryOptions> m_observers;
|
| MutationRecordDeliveryOptions m_oldValueFlag;
|
| };
|
|
|
|
|