| Index: sky/engine/core/css/StylePropertySet.cpp
|
| diff --git a/sky/engine/core/css/StylePropertySet.cpp b/sky/engine/core/css/StylePropertySet.cpp
|
| index 3a35fc24014e4a9cd659a3d677be560581b3070f..2e535984984b3aad9ecfbacdc88942b0bbdedf7e 100644
|
| --- a/sky/engine/core/css/StylePropertySet.cpp
|
| +++ b/sky/engine/core/css/StylePropertySet.cpp
|
| @@ -48,11 +48,7 @@ static size_t sizeForImmutableStylePropertySetWithPropertyCount(unsigned count)
|
| PassRefPtrWillBeRawPtr<ImmutableStylePropertySet> ImmutableStylePropertySet::create(const CSSProperty* properties, unsigned count, CSSParserMode cssParserMode)
|
| {
|
| ASSERT(count <= MaxArraySize);
|
| -#if ENABLE(OILPAN)
|
| - void* slot = Heap::allocate<StylePropertySet>(sizeForImmutableStylePropertySetWithPropertyCount(count));
|
| -#else
|
| void* slot = WTF::fastMalloc(sizeForImmutableStylePropertySetWithPropertyCount(count));
|
| -#endif // ENABLE(OILPAN)
|
| return adoptRefWillBeNoop(new (slot) ImmutableStylePropertySet(properties, count, cssParserMode));
|
| }
|
|
|
|
|