v8.h | v8.h | |||
---|---|---|---|---|
skipping to change at line 2411 | skipping to change at line 2411 | |||
* as much cleanup as it will be able to do. | * as much cleanup as it will be able to do. | |||
*/ | */ | |||
static bool IdleNotification(); | static bool IdleNotification(); | |||
/** | /** | |||
* Optional notification that the system is running low on memory. | * Optional notification that the system is running low on memory. | |||
* V8 uses these notifications to attempt to free memory. | * V8 uses these notifications to attempt to free memory. | |||
*/ | */ | |||
static void LowMemoryNotification(); | static void LowMemoryNotification(); | |||
/** | ||||
* Optional notification that a context has been disposed. V8 uses | ||||
* these notifications to guide the garbage collection heuristic. | ||||
*/ | ||||
static void ContextDisposedNotification(); | ||||
private: | private: | |||
V8(); | V8(); | |||
static internal::Object** GlobalizeReference(internal::Object** handle); | static internal::Object** GlobalizeReference(internal::Object** handle); | |||
static void DisposeGlobal(internal::Object** global_handle); | static void DisposeGlobal(internal::Object** global_handle); | |||
static void MakeWeak(internal::Object** global_handle, | static void MakeWeak(internal::Object** global_handle, | |||
void* data, | void* data, | |||
WeakReferenceCallback); | WeakReferenceCallback); | |||
static void ClearWeak(internal::Object** global_handle); | static void ClearWeak(internal::Object** global_handle); | |||
static bool IsGlobalNearDeath(internal::Object** global_handle); | static bool IsGlobalNearDeath(internal::Object** global_handle); | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 6 lines changed or added | |||