Index: src/heap-inl.h |
diff --git a/src/heap-inl.h b/src/heap-inl.h |
index 208b1ad32e4883f244237e6ff085759a266ad664..eb9d9c09d37f79c57a88fc8598a7172bfc4c8bf0 100644 |
--- a/src/heap-inl.h |
+++ b/src/heap-inl.h |
@@ -313,13 +313,13 @@ MaybeObject* Heap::AllocateRawCell() { |
} |
-MaybeObject* Heap::AllocateRawJSGlobalPropertyCell() { |
+MaybeObject* Heap::AllocateRawPropertyCell() { |
#ifdef DEBUG |
isolate_->counters()->objs_since_last_full()->Increment(); |
isolate_->counters()->objs_since_last_young()->Increment(); |
#endif |
MaybeObject* result = |
- property_cell_space_->AllocateRaw(JSGlobalPropertyCell::kSize); |
+ property_cell_space_->AllocateRaw(PropertyCell::kSize); |
if (result->IsFailure()) old_gen_exhausted_ = true; |
return result; |
} |