Index: src/heap/spaces.h |
diff --git a/src/heap/spaces.h b/src/heap/spaces.h |
index c8c4d3f5bbd6dd7d97a1d471377e94bf4f416ef4..67e9aae114326e8a57f55751115c063882b30712 100644 |
--- a/src/heap/spaces.h |
+++ b/src/heap/spaces.h |
@@ -3057,6 +3057,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 |