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

Unified Diff: third_party/WebKit/Source/core/dom/shadow/InsertionPoint.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/shadow/InsertionPoint.h
diff --git a/third_party/WebKit/Source/core/dom/shadow/InsertionPoint.h b/third_party/WebKit/Source/core/dom/shadow/InsertionPoint.h
index 2d198b19ec5f15aa66fdcf455f267b953a4bd99d..5d95c5cc36ffd0d02fa43e8cdb8c697732363385 100644
--- a/third_party/WebKit/Source/core/dom/shadow/InsertionPoint.h
+++ b/third_party/WebKit/Source/core/dom/shadow/InsertionPoint.h
@@ -52,7 +52,7 @@ public:
bool isShadowInsertionPoint() const;
bool isContentInsertionPoint() const;
- PassRefPtrWillBeRawPtr<StaticNodeList> getDistributedNodes();
+ RawPtr<StaticNodeList> getDistributedNodes();
virtual bool canAffectSelector() const { return false; }
@@ -83,7 +83,7 @@ private:
bool m_registeredWithShadowRoot;
};
-typedef WillBeHeapVector<RefPtrWillBeMember<InsertionPoint>, 1> DestinationInsertionPoints;
+typedef HeapVector<Member<InsertionPoint>, 1> DestinationInsertionPoints;
DEFINE_ELEMENT_TYPE_CASTS(InsertionPoint, isInsertionPoint());
@@ -114,7 +114,7 @@ inline ElementShadow* shadowWhereNodeCanBeDistributed(const Node& node)
const InsertionPoint* resolveReprojection(const Node*);
-void collectDestinationInsertionPoints(const Node&, WillBeHeapVector<RawPtrWillBeMember<InsertionPoint>, 8>& results);
+void collectDestinationInsertionPoints(const Node&, HeapVector<Member<InsertionPoint>, 8>& results);
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698