WebKit cheader_filename="webkit/webkit.h" lower_case_cprefix="webkit_"
+webkit_security_origin_get_all_web_databases type_arguments="WebKit.WebDatabase"
+webkit_web_back_forward_list_get_back_list_with_limit type_arguments="WebKit.WebHistoryItem"
+webkit_web_back_forward_list_get_forward_list_with_limit type_arguments="WebKit.WebHistoryItem"
+webkit_web_data_source_get_subresources type_arguments="WebKit.WebResource"
webkit_web_frame_get_global_context hidden="1"
webkit_web_settings_copy transfer_ownership="1"
WebKitWebView::copy_clipboard has_emitter="1"
public class SecurityOrigin : GLib.Object {
[CCode (has_construct_function = false)]
protected SecurityOrigin ();
- public unowned GLib.List get_all_web_databases ();
+ public unowned GLib.List<WebKit.WebDatabase> get_all_web_databases ();
public unowned string get_host ();
public uint get_port ();
public unowned string get_protocol ();
public bool contains_item (WebKit.WebHistoryItem history_item);
public unowned WebKit.WebHistoryItem get_back_item ();
public int get_back_length ();
- public unowned GLib.List get_back_list_with_limit (int limit);
+ public unowned GLib.List<WebKit.WebHistoryItem> get_back_list_with_limit (int limit);
public unowned WebKit.WebHistoryItem get_current_item ();
public unowned WebKit.WebHistoryItem get_forward_item ();
public int get_forward_length ();
- public unowned GLib.List get_forward_list_with_limit (int limit);
+ public unowned GLib.List<WebKit.WebHistoryItem> get_forward_list_with_limit (int limit);
public int get_limit ();
public unowned WebKit.WebHistoryItem get_nth_item (int index);
public void go_back ();
public unowned WebKit.NetworkRequest get_initial_request ();
public unowned WebKit.WebResource get_main_resource ();
public unowned WebKit.NetworkRequest get_request ();
- public unowned GLib.List get_subresources ();
+ public unowned GLib.List<WebKit.WebResource> get_subresources ();
public unowned string get_unreachable_uri ();
public unowned WebKit.WebFrame get_web_frame ();
public bool is_loading ();