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

Unified Diff: third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp

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/shadow/DistributedNodes.cpp
diff --git a/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp b/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp
index 32e9774df1ca6136cd89b94a1406328b2b06a333..29af20894f516fa892ebe15b84c0998b0e96d902 100644
--- a/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp
+++ b/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp
@@ -36,7 +36,7 @@ void DistributedNodes::swap(DistributedNodes& other)
m_indices.swap(other.m_indices);
}
-void DistributedNodes::append(PassRefPtrWillBeRawPtr<Node> node)
+void DistributedNodes::append(RawPtr<Node> node)
{
ASSERT(node);
ASSERT(!node->isSlotOrActiveInsertionPoint());
@@ -47,7 +47,7 @@ void DistributedNodes::append(PassRefPtrWillBeRawPtr<Node> node)
size_t DistributedNodes::find(const Node* node) const
{
- WillBeHeapHashMap<RawPtrWillBeMember<const Node>, size_t>::const_iterator it = m_indices.find(node);
+ HeapHashMap<Member<const Node>, size_t>::const_iterator it = m_indices.find(node);
if (it == m_indices.end())
return kNotFound;

Powered by Google App Engine
This is Rietveld 408576698