Method
WebKitFaviconDatabaseget_page_icons
unstable since: 2.54
Declaration [src]
void
webkit_favicon_database_get_page_icons (
WebKitFaviconDatabase* database,
const gchar* page_uri,
GCancellable* cancellable,
GAsyncReadyCallback callback,
gpointer user_data
)
Description [src]
Obtains the set of icons for a page.
Starts an asynchronous operation to obtain the set of icons cached in the database for a given
page URI. Available icons will be read from the database and provided as a WebKitImageList
that can be retrieved using webkit_favicon_database_get_page_icons_finish() in the completion
callback.
Available since: 2.54
This method completes asynchronously. Use webkit_favicon_database_get_page_icons_finish() inside the GAsyncReadyCallback to obtain the result of the operation.
Parameters
page_uri-
Type:
const gchar*URI of the page to get icons for.
The data is owned by the caller of the method. The value is a NUL terminated UTF-8 string. cancellable-
Type:
GCancellableA
GCancellableiorNULL.The argument can be NULL.The data is owned by the caller of the method. callback-
Type:
GAsyncReadyCallbackA
GAsyncReadyCallbackto invoke when the request is satisfied orNULLto discard the result.The argument can be NULL. user_data-
Type:
gpointerAdditional data to pass to
callback.The argument can be NULL.The data is owned by the caller of the method.