Chromium Code Reviews| Index: src/heap.h |
| diff --git a/src/heap.h b/src/heap.h |
| index 484929ae303d0f3c6db0f4d2e7ffabc5c2e84ea4..814c5512784dd9ae3cd1d4b01dad18253ae99d81 100644 |
| --- a/src/heap.h |
| +++ b/src/heap.h |
| @@ -1156,6 +1156,9 @@ class Heap : public AllStatic { |
| static GCTracer* tracer() { return tracer_; } |
| + // Returns the size of object residing in non new spaces. |
|
Erik Corry
2011/03/02 12:34:06
object -> the objects
Vyacheslav Egorov (Chromium)
2011/03/02 15:11:32
Done.
|
| + static intptr_t PromotedSpaceSize(); |
| + |
| private: |
| static int reserved_semispace_size_; |
| static int max_semispace_size_; |
| @@ -1189,9 +1192,6 @@ class Heap : public AllStatic { |
| static LargeObjectSpace* lo_space_; |
| static HeapState gc_state_; |
| - // Returns the size of object residing in non new spaces. |
| - static intptr_t PromotedSpaceSize(); |
| - |
| // Returns the amount of external memory registered since last global gc. |
| static int PromotedExternalMemorySize(); |