| Index: third_party/WebKit/Source/core/dom/DocumentOrderedList.h
|
| diff --git a/third_party/WebKit/Source/core/dom/DocumentOrderedList.h b/third_party/WebKit/Source/core/dom/DocumentOrderedList.h
|
| index 480866bca2b3bf0e625b1ae74325c4e866f69996..8a5b32b3672be6d70a6c1c2b76966e9d8acb0801 100644
|
| --- a/third_party/WebKit/Source/core/dom/DocumentOrderedList.h
|
| +++ b/third_party/WebKit/Source/core/dom/DocumentOrderedList.h
|
| @@ -47,7 +47,7 @@ public:
|
| void clear() { m_nodes.clear(); }
|
| size_t size() const { return m_nodes.size(); }
|
|
|
| - using iterator = WillBeHeapListHashSet<RawPtrWillBeMember<Node>, 32>::iterator;
|
| + using iterator = HeapListHashSet<Member<Node>, 32>::iterator;
|
|
|
| iterator begin() { return m_nodes.begin(); }
|
| iterator end() { return m_nodes.end(); }
|
| @@ -55,7 +55,7 @@ public:
|
| DECLARE_TRACE();
|
|
|
| private:
|
| - WillBeHeapListHashSet<RawPtrWillBeMember<Node>, 32> m_nodes;
|
| + HeapListHashSet<Member<Node>, 32> m_nodes;
|
| };
|
|
|
| } // namespace blink
|
|
|