summaryrefslogtreecommitdiff
path: root/vapi/webkit2gtk-4.0.vapi
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2018-08-28 22:52:14 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2018-08-28 22:52:14 +0200
commita1a14b2cc0892b5beeb86663a46f0bb98ba3cdd8 (patch)
tree435d624fe4fa7735245e162786dd1a7300def6cb /vapi/webkit2gtk-4.0.vapi
parentf6a451f01e5010b0d23c926f1723d8abf0072f53 (diff)
downloadvala-a1a14b2cc0892b5beeb86663a46f0bb98ba3cdd8.tar.gz
webkit2gtk-4.0: Update to 2.21.92
Diffstat (limited to 'vapi/webkit2gtk-4.0.vapi')
-rw-r--r--vapi/webkit2gtk-4.0.vapi10
1 files changed, 10 insertions, 0 deletions
diff --git a/vapi/webkit2gtk-4.0.vapi b/vapi/webkit2gtk-4.0.vapi
index 99853147c..36ea67d6c 100644
--- a/vapi/webkit2gtk-4.0.vapi
+++ b/vapi/webkit2gtk-4.0.vapi
@@ -857,12 +857,16 @@ namespace WebKit {
public void add_style_sheet (WebKit.UserStyleSheet stylesheet);
[Version (since = "2.8")]
public bool register_script_message_handler (string name);
+ [Version (since = "2.22")]
+ public bool register_script_message_handler_in_world (string name, string world_name);
[Version (since = "2.6")]
public void remove_all_scripts ();
[Version (since = "2.6")]
public void remove_all_style_sheets ();
[Version (since = "2.8")]
public void unregister_script_message_handler (string name);
+ [Version (since = "2.22")]
+ public void unregister_script_message_handler_in_world (string name, string world_name);
[Version (since = "2.8")]
public signal void script_message_received (WebKit.JavascriptResult js_result);
}
@@ -881,6 +885,9 @@ namespace WebKit {
[CCode (has_construct_function = false)]
[Version (since = "2.6")]
public UserScript (string source, WebKit.UserContentInjectedFrames injected_frames, WebKit.UserScriptInjectionTime injection_time, [CCode (array_length = false, array_null_terminated = true)] string[]? whitelist, [CCode (array_length = false, array_null_terminated = true)] string[]? blacklist);
+ [CCode (has_construct_function = false)]
+ [Version (since = "2.22")]
+ public UserScript.for_world (string source, WebKit.UserContentInjectedFrames injected_frames, WebKit.UserScriptInjectionTime injection_time, string world_name, [CCode (array_length = false, array_null_terminated = true)] string[]? whitelist, [CCode (array_length = false, array_null_terminated = true)] string[]? blacklist);
[Version (since = "2.6")]
public unowned WebKit.UserScript @ref ();
[Version (since = "2.6")]
@@ -892,6 +899,9 @@ namespace WebKit {
[CCode (has_construct_function = false)]
[Version (since = "2.6")]
public UserStyleSheet (string source, WebKit.UserContentInjectedFrames injected_frames, WebKit.UserStyleLevel level, [CCode (array_length = false, array_null_terminated = true)] string[]? whitelist, [CCode (array_length = false, array_null_terminated = true)] string[]? blacklist);
+ [CCode (has_construct_function = false)]
+ [Version (since = "2.22")]
+ public UserStyleSheet.for_world (string source, WebKit.UserContentInjectedFrames injected_frames, WebKit.UserStyleLevel level, string world_name, [CCode (array_length = false, array_null_terminated = true)] string[]? whitelist, [CCode (array_length = false, array_null_terminated = true)] string[]? blacklist);
[Version (since = "2.6")]
public unowned WebKit.UserStyleSheet @ref ();
[Version (since = "2.6")]