Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk.c20
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk_stats.c1
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk_stats.h1
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/org/eclipse/swt/internal/webkit/WebKitGTK.java12
4 files changed, 0 insertions, 34 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk.c b/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk.c
index 8cd55c11e7..de6febe682 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk.c
+++ b/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk.c
@@ -2380,26 +2380,6 @@ JNIEXPORT jintLong JNICALL WebKitGTK_NATIVE(_1webkit_1web_1context_1get_1website
}
#endif
-#ifndef NO__1webkit_1web_1context_1set_1favicon_1database_1directory
-JNIEXPORT jintLong JNICALL WebKitGTK_NATIVE(_1webkit_1web_1context_1set_1favicon_1database_1directory)
- (JNIEnv *env, jclass that, jintLong arg0, jintLong arg1)
-{
- jintLong rc = 0;
- WebKitGTK_NATIVE_ENTER(env, that, _1webkit_1web_1context_1set_1favicon_1database_1directory_FUNC);
-/*
- rc = (jintLong)webkit_web_context_set_favicon_database_directory(arg0, arg1);
-*/
- {
- WebKitGTK_LOAD_FUNCTION(fp, webkit_web_context_set_favicon_database_directory)
- if (fp) {
- rc = (jintLong)((jintLong (CALLING_CONVENTION*)(jintLong, jintLong))fp)(arg0, arg1);
- }
- }
- WebKitGTK_NATIVE_EXIT(env, that, _1webkit_1web_1context_1set_1favicon_1database_1directory_FUNC);
- return rc;
-}
-#endif
-
#ifndef NO__1webkit_1web_1context_1set_1tls_1errors_1policy
JNIEXPORT void JNICALL WebKitGTK_NATIVE(_1webkit_1web_1context_1set_1tls_1errors_1policy)
(JNIEnv *env, jclass that, jintLong arg0, jint arg1)
diff --git a/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk_stats.c b/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk_stats.c
index f6afdf4920..32ad50e13e 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk_stats.c
+++ b/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk_stats.c
@@ -140,7 +140,6 @@ char * WebKitGTK_nativeFunctionNames[] = {
"_1webkit_1web_1context_1get_1default",
"_1webkit_1web_1context_1get_1type",
"_1webkit_1web_1context_1get_1website_1data_1manager",
- "_1webkit_1web_1context_1set_1favicon_1database_1directory",
"_1webkit_1web_1context_1set_1tls_1errors_1policy",
"_1webkit_1web_1context_1set_1web_1extensions_1directory",
"_1webkit_1web_1context_1set_1web_1extensions_1initialization_1user_1data",
diff --git a/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk_stats.h b/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk_stats.h
index 39bf726604..dab44c08fe 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk_stats.h
@@ -150,7 +150,6 @@ typedef enum {
_1webkit_1web_1context_1get_1default_FUNC,
_1webkit_1web_1context_1get_1type_FUNC,
_1webkit_1web_1context_1get_1website_1data_1manager_FUNC,
- _1webkit_1web_1context_1set_1favicon_1database_1directory_FUNC,
_1webkit_1web_1context_1set_1tls_1errors_1policy_FUNC,
_1webkit_1web_1context_1set_1web_1extensions_1directory_FUNC,
_1webkit_1web_1context_1set_1web_1extensions_1initialization_1user_1data_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/org/eclipse/swt/internal/webkit/WebKitGTK.java b/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/org/eclipse/swt/internal/webkit/WebKitGTK.java
index 98144e1fcb..11ccd2261f 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/org/eclipse/swt/internal/webkit/WebKitGTK.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/org/eclipse/swt/internal/webkit/WebKitGTK.java
@@ -1443,18 +1443,6 @@ try {
}
/** @method flags=dynamic */
-public static final native long /*int*/ _webkit_web_context_set_favicon_database_directory (long /*int*/ context, long /*int*/ path);
-public static final long /*int*/ webkit_web_context_set_favicon_database_directory (long /*int*/ context, long /*int*/ path) { // Never called.
- assert WEBKIT2 : Webkit2AssertMsg;
- lock.lock();
- try {
- return _webkit_web_context_set_favicon_database_directory (context, path);
- } finally {
- lock.unlock();
- }
-}
-
-/** @method flags=dynamic */
public static final native void _webkit_web_context_set_tls_errors_policy(long /*int*/ context, int policy);
public static final void webkit_web_context_set_tls_errors_policy (long /*int*/ context, int policy) {
assert WEBKIT2 : Webkit2AssertMsg;

Back to the top