Chromium Code Reviews| Index: src/heap.h |
| diff --git a/src/heap.h b/src/heap.h |
| index f9146c325a2c2e3cca492631ce363453a818d59f..bd0a0e66c3b0a1b6fcdb99261f9ba6594fb721ea 100644 |
| --- a/src/heap.h |
| +++ b/src/heap.h |
| @@ -238,9 +238,9 @@ class Heap : public AllStatic { |
| public: |
| // Configure heap size before setup. Return false if the heap has been |
| // setup already. |
| - static bool ConfigureHeap(intptr_t max_semispace_size, |
| - intptr_t max_old_gen_size, |
| - intptr_t max_executable_size); |
| + static bool ConfigureHeap(int max_semispace_size, |
|
Vyacheslav Egorov (Chromium)
2011/06/28 12:28:37
Hmm. This is pretty strange change. What about ove
Lasse Reichstein
2011/06/29 10:54:58
The fields are ints, so passing something bigger h
|
| + int max_old_gen_size, |
| + int max_executable_size); |
| static bool ConfigureHeapDefault(); |
| // Initializes the global object heap. If create_heap_objects is true, |