Index: Source/core/dom/StaticNodeList.h |
diff --git a/Source/core/dom/StaticNodeList.h b/Source/core/dom/StaticNodeList.h |
index e32e4f5fe38b97cc46749fdbe26234c120e2a5b3..1edc303854d59cf86c65d1a91979ad45bc1c1898 100644 |
--- a/Source/core/dom/StaticNodeList.h |
+++ b/Source/core/dom/StaticNodeList.h |
@@ -43,7 +43,7 @@ class Node; |
template <typename NodeType> |
class StaticNodeTypeList final : public NodeList { |
public: |
- static PassRefPtrWillBeRawPtr<StaticNodeTypeList> adopt(WillBeHeapVector<RefPtrWillBeMember<NodeType> >& nodes); |
+ static PassRefPtrWillBeRawPtr<StaticNodeTypeList> adopt(WillBeHeapVector<RefPtrWillBeMember<NodeType>>& nodes); |
static PassRefPtrWillBeRawPtr<StaticNodeTypeList> createEmpty() |
{ |
@@ -63,16 +63,16 @@ private: |
return m_nodes.capacity() * sizeof(RefPtrWillBeMember<NodeType>); |
} |
- WillBeHeapVector<RefPtrWillBeMember<NodeType> > m_nodes; |
+ WillBeHeapVector<RefPtrWillBeMember<NodeType>> m_nodes; |
}; |
typedef StaticNodeTypeList<Node> StaticNodeList; |
typedef StaticNodeTypeList<Element> StaticElementList; |
template <typename NodeType> |
-PassRefPtrWillBeRawPtr<StaticNodeTypeList<NodeType> > StaticNodeTypeList<NodeType>::adopt(WillBeHeapVector<RefPtrWillBeMember<NodeType> >& nodes) |
+PassRefPtrWillBeRawPtr<StaticNodeTypeList<NodeType>> StaticNodeTypeList<NodeType>::adopt(WillBeHeapVector<RefPtrWillBeMember<NodeType>>& nodes) |
{ |
- RefPtrWillBeRawPtr<StaticNodeTypeList<NodeType> > nodeList = adoptRefWillBeNoop(new StaticNodeTypeList<NodeType>); |
+ RefPtrWillBeRawPtr<StaticNodeTypeList<NodeType>> nodeList = adoptRefWillBeNoop(new StaticNodeTypeList<NodeType>); |
nodeList->m_nodes.swap(nodes); |
v8::Isolate::GetCurrent()->AdjustAmountOfExternalAllocatedMemory(nodeList->AllocationSize()); |
return nodeList.release(); |