| Index: Source/core/css/StylePropertySet.h
|
| diff --git a/Source/core/css/StylePropertySet.h b/Source/core/css/StylePropertySet.h
|
| index 50087aa3b2e7c5ba6c934eadbee7723791eb94db..22c6c72125b316aa55a63b88b2ded430ec777548 100644
|
| --- a/Source/core/css/StylePropertySet.h
|
| +++ b/Source/core/css/StylePropertySet.h
|
| @@ -182,7 +182,7 @@ public:
|
|
|
| unsigned propertyCount() const { return m_propertyVector.size(); }
|
|
|
| - void addParsedProperties(const Vector<CSSProperty, 256>&);
|
| + void addParsedProperties(const WillBeHeapVector<CSSProperty, 256>&);
|
| void addParsedProperty(const CSSProperty&);
|
|
|
| // These expand shorthand properties into multiple properties.
|
| @@ -222,7 +222,7 @@ private:
|
|
|
| friend class StylePropertySet;
|
|
|
| - Vector<CSSProperty, 4> m_propertyVector;
|
| + WillBePersistentHeapVector<CSSProperty, 4> m_propertyVector;
|
| };
|
|
|
| DEFINE_TYPE_CASTS(MutableStylePropertySet, StylePropertySet, set, set->isMutable(), set.isMutable());
|
|
|