Chromium Code Reviews| Index: include/v8.h |
| diff --git a/include/v8.h b/include/v8.h |
| index ef01a5fdd9307cdfd2235aad70c95bdae3c23a0f..ac21803a768ada01af6e9ec467723b03da609f33 100644 |
| --- a/include/v8.h |
| +++ b/include/v8.h |
| @@ -4996,8 +4996,12 @@ class V8_EXPORT Isolate { |
| * The idle_time_in_ms argument specifies the time V8 has to do reduce |
| * the memory footprint. There is no guarantee that the actual work will be |
| * done within the time limit. |
| + * The deadline argument specifies the deadline V8 has to reduce |
| + * the memory footprint. There is no guarantee that the actual work will be |
| + * done within the time limit. |
|
rmcilroy
2014/11/25 14:28:06
nit - mention that deadline_seconds is compared wi
Hannes Payer (out of office)
2014/11/25 16:01:36
Done.
|
| */ |
| bool IdleNotification(int idle_time_in_ms); |
| + bool IdleNotification(double deadline_in_seconds); |
| /** |
| * Optional notification that the system is running low on memory. |