Top | ![]() |
![]() |
![]() |
![]() |
struct wpe_view_backend * | webkit_web_view_backend_get_wpe_backend () |
WebKitWebViewBackend * | webkit_web_view_backend_new () |
A WebKitWebViewBackend is a boxed type wrapping a WPE backend used to create a
WebKitWebView. A WebKitWebViewBackend is created with webkit_web_view_backend_new()
and it should be passed to a WebKitWebView constructor that will take the ownership.
struct wpe_view_backend *
webkit_web_view_backend_get_wpe_backend
(WebKitWebViewBackend *view_backend
);
Get the WPE backend of view_backend
Since: 2.20
WebKitWebViewBackend * webkit_web_view_backend_new (struct wpe_view_backend *backend
,GDestroyNotify notify
,gpointer user_data
);
Create a new WebKitWebViewBackend for the given WPE backend
. You can pass a GDestroyNotify
that will be called when the object is destroyed passing user_data
as the argument. If notify
is NULL
, wpe_view_backend_destroy()
will be used with backend
as argument.
The returned WebKitWebViewBackend should never be freed by the user; it must be passed to a
WebKitWebView constructor that will take the ownership.
backend |
a wpe_view_backend. |
[transfer full] |
notify |
a GDestroyNotify, or |
[nullable] |
user_data |
user data to pass to |
Since: 2.20