28 #ifndef V8_ALLOCATION_INL_H_
29 #define V8_ALLOCATION_INL_H_
37 void* PreallocatedStorageAllocationPolicy::New(
size_t size) {
38 return Isolate::Current()->PreallocatedStorageNew(size);
42 void PreallocatedStorageAllocationPolicy::Delete(
void* p) {
43 return Isolate::Current()->PreallocatedStorageDelete(p);
49 #endif // V8_ALLOCATION_INL_H_