Index: src/v8.cc |
diff --git a/src/v8.cc b/src/v8.cc |
index 66c65e7b00a36ef63f6fe54eccb09c8431db6866..634c5c3e7b86779eccf22eb2c79bf26fb6e54ddc 100644 |
--- a/src/v8.cc |
+++ b/src/v8.cc |
@@ -166,13 +166,13 @@ uint32_t V8::RandomPrivate(Isolate* isolate) { |
} |
-bool V8::IdleNotification() { |
+bool V8::IdleNotification(int hint) { |
// Returning true tells the caller that there is no need to call |
// IdleNotification again. |
if (!FLAG_use_idle_notification) return true; |
// Tell the heap that it may want to adjust. |
- return HEAP->IdleNotification(); |
+ return HEAP->IdleNotification(hint); |
} |