Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(295)

Unified Diff: third_party/WebKit/Source/core/dom/ChildListMutationScope.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/dom/ChildListMutationScope.h
diff --git a/third_party/WebKit/Source/core/dom/ChildListMutationScope.h b/third_party/WebKit/Source/core/dom/ChildListMutationScope.h
index c7cb3f1c0311db466ff234b983d044b9f3516b94..654938f6ddcaeb0cd8d7caa550388f70f6c2a135 100644
--- a/third_party/WebKit/Source/core/dom/ChildListMutationScope.h
+++ b/third_party/WebKit/Source/core/dom/ChildListMutationScope.h
@@ -49,13 +49,12 @@ class MutationObserverInterestGroup;
// active ChildListMutationScopes for that Node. Once the last ChildListMutationScope
// is destructed the accumulator enqueues a mutation record for the recorded
// mutations and the accumulator can be garbage collected.
-class ChildListMutationAccumulator final : public RefCountedWillBeGarbageCollected<ChildListMutationAccumulator> {
- DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(ChildListMutationAccumulator);
+class ChildListMutationAccumulator final : public GarbageCollected<ChildListMutationAccumulator> {
public:
- static PassRefPtrWillBeRawPtr<ChildListMutationAccumulator> getOrCreate(Node&);
+ static RawPtr<ChildListMutationAccumulator> getOrCreate(Node&);
- void childAdded(PassRefPtrWillBeRawPtr<Node>);
- void willRemoveChild(PassRefPtrWillBeRawPtr<Node>);
+ void childAdded(RawPtr<Node>);
+ void willRemoveChild(RawPtr<Node>);
bool hasObservers() const { return m_observers; }
@@ -67,22 +66,22 @@ public:
DECLARE_TRACE();
private:
- ChildListMutationAccumulator(PassRefPtrWillBeRawPtr<Node>, PassOwnPtrWillBeRawPtr<MutationObserverInterestGroup>);
+ ChildListMutationAccumulator(RawPtr<Node>, RawPtr<MutationObserverInterestGroup>);
void enqueueMutationRecord();
bool isEmpty();
bool isAddedNodeInOrder(Node*);
bool isRemovedNodeInOrder(Node*);
- RefPtrWillBeMember<Node> m_target;
+ Member<Node> m_target;
- WillBeHeapVector<RefPtrWillBeMember<Node>> m_removedNodes;
- WillBeHeapVector<RefPtrWillBeMember<Node>> m_addedNodes;
- RefPtrWillBeMember<Node> m_previousSibling;
- RefPtrWillBeMember<Node> m_nextSibling;
- RawPtrWillBeMember<Node> m_lastAdded;
+ HeapVector<Member<Node>> m_removedNodes;
+ HeapVector<Member<Node>> m_addedNodes;
+ Member<Node> m_previousSibling;
+ Member<Node> m_nextSibling;
+ Member<Node> m_lastAdded;
- OwnPtrWillBeMember<MutationObserverInterestGroup> m_observers;
+ Member<MutationObserverInterestGroup> m_observers;
unsigned m_mutationScopes;
};
@@ -122,7 +121,7 @@ public:
}
private:
- RefPtrWillBeMember<ChildListMutationAccumulator> m_accumulator;
+ Member<ChildListMutationAccumulator> m_accumulator;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698