Update webview.h to version 0.10.0

This commit is contained in:
Steffen André Langnes 2024-02-17 18:25:42 +09:00
parent 5a14030a90
commit 161bacafc0
No known key found for this signature in database
GPG Key ID: 186C13B9E313A251
2 changed files with 3 additions and 2 deletions

View File

@ -623,7 +623,8 @@ private:
static char *get_string_from_js_result(WebKitJavascriptResult *r) {
char *s;
#if WEBKIT_MAJOR_VERSION >= 2 && WEBKIT_MINOR_VERSION >= 22
#if (WEBKIT_MAJOR_VERSION == 2 && WEBKIT_MINOR_VERSION >= 22) || \
WEBKIT_MAJOR_VERSION > 2
JSCValue *value = webkit_javascript_result_get_js_value(r);
s = jsc_value_to_string(value);
#else

View File

@ -1 +1 @@
6b2747222f14265ced7af5fa13e6f16d43a55325
0.10.0