Chromium Code Reviews| Index: src/heap/spaces.h |
| diff --git a/src/heap/spaces.h b/src/heap/spaces.h |
| index c66aef0a183a96f24fc155c3399bef5b89dd285f..93a81cc933321668ce71c0130dc6db1d1ea6a2aa 100644 |
| --- a/src/heap/spaces.h |
| +++ b/src/heap/spaces.h |
| @@ -3024,6 +3024,8 @@ class LargeObjectSpace : public Space { |
| // Checks whether the space is empty. |
| bool IsEmpty() { return first_page_ == NULL; } |
| + void AdjustLiveBytes(int by) { objects_size_ += by; } |
| + |
| LargePage* first_page() { return first_page_; } |
| #ifdef VERIFY_HEAP |