Index: Source/core/dom/shadow/ShadowRootRareData.h |
diff --git a/Source/core/dom/shadow/ShadowRootRareData.h b/Source/core/dom/shadow/ShadowRootRareData.h |
index 8a066658bc9a960cd74fd6ce66cbb2ada9b3aab3..081d808d379c17db896beb386809ecb45c89b16d 100644 |
--- a/Source/core/dom/shadow/ShadowRootRareData.h |
+++ b/Source/core/dom/shadow/ShadowRootRareData.h |
@@ -63,8 +63,8 @@ public: |
unsigned childShadowRootCount() const { return m_childShadowRootCount; } |
- const WillBeHeapVector<RefPtrWillBeMember<InsertionPoint> >& descendantInsertionPoints() { return m_descendantInsertionPoints; } |
- void setDescendantInsertionPoints(WillBeHeapVector<RefPtrWillBeMember<InsertionPoint> >& list) { m_descendantInsertionPoints.swap(list); } |
+ const WillBeHeapVector<RefPtrWillBeMember<InsertionPoint>>& descendantInsertionPoints() { return m_descendantInsertionPoints; } |
+ void setDescendantInsertionPoints(WillBeHeapVector<RefPtrWillBeMember<InsertionPoint>>& list) { m_descendantInsertionPoints.swap(list); } |
void clearDescendantInsertionPoints() { m_descendantInsertionPoints.clear(); } |
StyleSheetList* styleSheets() { return m_styleSheetList.get(); } |
@@ -82,7 +82,7 @@ private: |
unsigned m_descendantShadowElementCount; |
unsigned m_descendantContentElementCount; |
unsigned m_childShadowRootCount; |
- WillBeHeapVector<RefPtrWillBeMember<InsertionPoint> > m_descendantInsertionPoints; |
+ WillBeHeapVector<RefPtrWillBeMember<InsertionPoint>> m_descendantInsertionPoints; |
RefPtrWillBeMember<StyleSheetList> m_styleSheetList; |
}; |