changeset 227:b60550517945 icedtea-web-1.1-branchpoint

Use NPN_GetURLNotify (non-blocking) instead of NPN_GetURL (blocking) Fixed spacing issues in previous ChangeLog entry
author Deepak Bhole <dbhole@redhat.com>
date Thu, 21 Apr 2011 11:08:02 -0400
parents a50cd6a66ae6
children b3b9e39c9c07
files ChangeLog plugin/icedteanp/IcedTeaNPPlugin.cc
diffstat 2 files changed, 12 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Apr 20 16:58:29 2011 -0400
+++ b/ChangeLog	Thu Apr 21 11:08:02 2011 -0400
@@ -1,9 +1,16 @@
+2011-04-21  Deepak Bhole <dbhole@redhat.com>
+
+	* plugin/icedteanp/IcedTeaNPPlugin.cc (consume_message): Use
+	NPN_GetURLNotify (non-blocking) instead of NPN_GetURL (blocking) so that
+	the plugin is free to process additional requests.
+	* ChangeLog: Fixed spacing issues in previous entry.
+
 2011-04-20  Andrew Su  <asu@redhat.com>
 
-        * netx/net/sourceforge/jnlp/controlpanel/CachePane.java:
-        (createButtonPanel): Changed to update the recently_used file to
-        reflect the deletion. Added method updateRecentlyUsed to anonymous
-        ActionListener class which will do the actual updating.
+	* netx/net/sourceforge/jnlp/controlpanel/CachePane.java:
+	(createButtonPanel): Changed to update the recently_used file to
+	reflect the deletion. Added method updateRecentlyUsed to anonymous
+	ActionListener class which will do the actual updating.
 
 2011-04-20  Omair Majid  <omajid@redhat.com>
 
--- a/plugin/icedteanp/IcedTeaNPPlugin.cc	Wed Apr 20 16:58:29 2011 -0400
+++ b/plugin/icedteanp/IcedTeaNPPlugin.cc	Thu Apr 21 11:08:02 2011 -0400
@@ -1179,7 +1179,7 @@
           PLUGIN_DEBUG ("plugin_in_pipe_callback: URL target %s\n", parts[4]);
 
           NPError np_error =
-            (*browser_functions.geturl) (data->owner, decoded_url, parts[4]);
+            (*browser_functions.geturlnotify) (data->owner, decoded_url, parts[4], NULL);
 
 
           if (np_error != NPERR_NO_ERROR)