Index: Source/core/svg/SVGElement.h |
diff --git a/Source/core/svg/SVGElement.h b/Source/core/svg/SVGElement.h |
index a314e422f6cc54f2a608f8deddc78b6dfc6c17c2..fc0afdf983e13a49270e8fdb6fc285c2842eac60 100644 |
--- a/Source/core/svg/SVGElement.h |
+++ b/Source/core/svg/SVGElement.h |
@@ -48,7 +48,7 @@ class SVGLength; |
class SVGSVGElement; |
class SVGUseElement; |
-typedef WillBeHeapHashSet<RawPtrWillBeMember<SVGElement> > SVGElementSet; |
+typedef WillBeHeapHashSet<RawPtrWillBeMember<SVGElement>> SVGElementSet; |
class SVGElement : public Element { |
DEFINE_WRAPPERTYPEINFO(); |
@@ -111,7 +111,7 @@ public: |
void invalidateSVGPresentationAttributeStyle() { ensureUniqueElementData().m_presentationAttributeStyleIsDirty = true; } |
void addSVGLengthPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPropertyID, SVGLength&); |
- const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> >& instancesForElement() const; |
+ const WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement>>& instancesForElement() const; |
void mapInstanceToElement(SVGElement*); |
void removeInstanceMapping(SVGElement*); |
@@ -242,9 +242,9 @@ private: |
void buildPendingResourcesIfNeeded(); |
- WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> > m_elementsWithRelativeLengths; |
+ WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement>> m_elementsWithRelativeLengths; |
- typedef WillBeHeapHashMap<QualifiedName, RefPtrWillBeMember<SVGAnimatedPropertyBase> > AttributeToPropertyMap; |
+ typedef WillBeHeapHashMap<QualifiedName, RefPtrWillBeMember<SVGAnimatedPropertyBase>> AttributeToPropertyMap; |
AttributeToPropertyMap m_attributeToPropertyMap; |
#if ENABLE(ASSERT) |