| Index: include/v8.h
|
| diff --git a/include/v8.h b/include/v8.h
|
| index f75ff4fb86476f847f88e9ffad9e465fed95e604..b566da4bc8356b456de00270ad5a4ea5155c9822 100644
|
| --- a/include/v8.h
|
| +++ b/include/v8.h
|
| @@ -7044,6 +7044,17 @@ class V8_EXPORT Isolate {
|
| void SetRAILMode(RAILMode rail_mode);
|
|
|
| /**
|
| + * Optional notification to tell V8 the current isolate is used for debugging
|
| + * and requires higher heap limit.
|
| + */
|
| + void IncreaseHeapLimitForDebugging();
|
| +
|
| + /**
|
| + * Restores the original heap limit after IncreaseHeapLimitForDebugging().
|
| + */
|
| + void RestoreOriginalHeapLimit();
|
| +
|
| + /**
|
| * Allows the host application to provide the address of a function that is
|
| * notified each time code is added, moved or removed.
|
| *
|
|
|