Index: third_party/WebKit/Source/core/css/StylePropertySet.cpp |
diff --git a/third_party/WebKit/Source/core/css/StylePropertySet.cpp b/third_party/WebKit/Source/core/css/StylePropertySet.cpp |
index 6cf13498d45f95562ca0d00f6634e5779cfeacd5..008e293429682d2e21f251d3f4e650ad5adc965e 100644 |
--- a/third_party/WebKit/Source/core/css/StylePropertySet.cpp |
+++ b/third_party/WebKit/Source/core/css/StylePropertySet.cpp |
@@ -48,7 +48,7 @@ static size_t sizeForImmutableStylePropertySetWithPropertyCount(unsigned count) |
ImmutableStylePropertySet* ImmutableStylePropertySet::create(const CSSProperty* properties, unsigned count, CSSParserMode cssParserMode) |
{ |
ASSERT(count <= MaxArraySize); |
- void* slot = Heap::allocate<StylePropertySet>(sizeForImmutableStylePropertySetWithPropertyCount(count)); |
+ void* slot = ThreadHeap::allocate<StylePropertySet>(sizeForImmutableStylePropertySetWithPropertyCount(count)); |
return new (slot) ImmutableStylePropertySet(properties, count, cssParserMode); |
} |