summaryrefslogtreecommitdiffstats
path: root/Tools/GtkLauncher/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/GtkLauncher/main.c')
-rw-r--r--Tools/GtkLauncher/main.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/Tools/GtkLauncher/main.c b/Tools/GtkLauncher/main.c
index a1baf05..ad666e2 100644
--- a/Tools/GtkLauncher/main.c
+++ b/Tools/GtkLauncher/main.c
@@ -230,6 +230,24 @@ static gchar* filenameToURL(const char* filename)
return fileURL;
}
+#ifndef GTK_API_VERSION_2
+static void disablePlugin(const char* pluginName)
+{
+ WebKitWebPluginDatabase *database = webkit_get_web_plugin_database();
+ GSList *plugins = webkit_web_plugin_database_get_plugins(database);
+ GSList *p;
+
+ for (p = plugins; p; p = g_slist_next(p)) {
+ WebKitWebPlugin *plugin = WEBKIT_WEB_PLUGIN(p->data);
+
+ if (!g_strcmp0(webkit_web_plugin_get_name(plugin), pluginName))
+ webkit_web_plugin_set_enabled(plugin, FALSE);
+ }
+
+ webkit_web_plugin_database_plugins_list_free(plugins);
+}
+#endif
+
int main(int argc, char* argv[])
{
WebKitWebView *webView;
@@ -239,6 +257,10 @@ int main(int argc, char* argv[])
if (!g_thread_supported())
g_thread_init(NULL);
+#ifndef GTK_API_VERSION_2
+ disablePlugin("Shockwave Flash");
+#endif
+
main_window = createWindow(&webView);
gchar *uri =(gchar*)(argc > 1 ? argv[1] : "http://www.google.com/");