Namespace WebKitWebProcessExtension.Internal
Classes
- WebProcessExtensionInitializeFunctionAsyncHandler
Async Handler for WebProcessExtensionInitializeFunction. An async annotation indicates the closure will be called precisely once, after which it is then available for garbage collection.
- WebProcessExtensionInitializeFunctionForeverHandler
Forever Handler for WebProcessExtensionInitializeFunction. An forever annotation indicates the closure will be valid until the process terminates. Therefor the object will never be freed.
- WebProcessExtensionInitializeFunctionNotifiedHandler
Notified Handler for WebProcessExtensionInitializeFunction. A notified annotation indicates the closure should be kept alive until it is manually removed by the user. This removal is indicated by a destroy_notify event, emitted by the relevant library. Pass
DestroyNotify
in place of a destroy_notify callback parameter.
- WebProcessExtensionInitializeWithUserDataFunctionAsyncHandler
Async Handler for WebProcessExtensionInitializeWithUserDataFunction. An async annotation indicates the closure will be called precisely once, after which it is then available for garbage collection.
- WebProcessExtensionInitializeWithUserDataFunctionForeverHandler
Forever Handler for WebProcessExtensionInitializeWithUserDataFunction. An forever annotation indicates the closure will be valid until the process terminates. Therefor the object will never be freed.
- WebProcessExtensionInitializeWithUserDataFunctionNotifiedHandler
Notified Handler for WebProcessExtensionInitializeWithUserDataFunction. A notified annotation indicates the closure should be kept alive until it is manually removed by the user. This removal is indicated by a destroy_notify event, emitted by the relevant library. Pass
DestroyNotify
in place of a destroy_notify callback parameter.