[icedtea-web] RFC: Fix handling of 0x0 applets for chromium

Deepak Bhole dbhole at redhat.com
Wed Mar 2 13:41:40 PST 2011


This patch fixes chromium to work with the new protocol which supplies
handle, size and url in the same message.

ChangeLog:

2011-03-02  Deepak Bhole <dbhole at redhat.com>

    * plugin/icedteanp/IcedTeaNPPlugin.cc (get_scriptable_object):
    Supply size and url information along with handle.

1.0 is affected, and this patch should go there too.

Cheers,
Deepak
-------------- next part --------------
diff -r 5dbf0f9de599 plugin/icedteanp/IcedTeaNPPlugin.cc
--- a/plugin/icedteanp/IcedTeaNPPlugin.cc	Wed Mar 02 11:50:30 2011 -0500
+++ b/plugin/icedteanp/IcedTeaNPPlugin.cc	Wed Mar 02 16:08:15 2011 -0500
@@ -2415,8 +2415,8 @@
         if (!data->window_handle)
         {
             data->window_handle = 0;
-            gchar *window_message = g_strdup_printf ("instance %s handle %d",
-                                                    id_str, 0);
+            gchar *window_message = g_strdup_printf ("instance %s handle %d width 0 height 0 %s",
+                                                    id_str, 0, data->applet_tag);
             plugin_send_message_to_appletviewer (window_message);
             g_free (window_message);
         }



More information about the distro-pkg-dev mailing list