| 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
 | 
|  
 | 
| 
 |