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

Unified Diff: third_party/WebKit/Source/core/dom/DocumentOrderedList.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/DocumentOrderedList.h
diff --git a/third_party/WebKit/Source/core/dom/DocumentOrderedList.h b/third_party/WebKit/Source/core/dom/DocumentOrderedList.h
index a39792b29bbb664a697242d1fa53b842884bddd1..225d8263e6ed2e4628c1dfd00d2469d7175de596 100644
--- a/third_party/WebKit/Source/core/dom/DocumentOrderedList.h
+++ b/third_party/WebKit/Source/core/dom/DocumentOrderedList.h
@@ -47,8 +47,8 @@ public:
void clear() { m_nodes.clear(); }
size_t size() const { return m_nodes.size(); }
- using iterator = WillBeHeapListHashSet<RawPtrWillBeMember<Node>, 32>::iterator;
- using const_reverse_iterator = WillBeHeapListHashSet<RawPtrWillBeMember<Node>, 32>::const_reverse_iterator;
+ using iterator = HeapListHashSet<Member<Node>, 32>::iterator;
+ using const_reverse_iterator = HeapListHashSet<Member<Node>, 32>::const_reverse_iterator;
iterator begin() { return m_nodes.begin(); }
iterator end() { return m_nodes.end(); }
@@ -59,7 +59,7 @@ public:
DECLARE_TRACE();
private:
- WillBeHeapListHashSet<RawPtrWillBeMember<Node>, 32> m_nodes;
+ HeapListHashSet<Member<Node>, 32> m_nodes;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/dom/DocumentOrShadowRoot.h ('k') | third_party/WebKit/Source/core/dom/DocumentOrderedMap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698