From 802e3159c452efe2cf2e21bd8fdb899a8824d539 Mon Sep 17 00:00:00 2001 From: Deepak Bhole Date: Thu, 21 Apr 2011 11:08:02 -0400 Subject: Use NPN_GetURLNotify (non-blocking) instead of NPN_GetURL (blocking) Fixed spacing issues in previous ChangeLog entry --- ChangeLog | 15 +++++++++++---- plugin/icedteanp/IcedTeaNPPlugin.cc | 2 +- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 80eaddd..a386773 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,16 @@ +2011-04-21 Deepak Bhole + + * 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 - * 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 diff --git a/plugin/icedteanp/IcedTeaNPPlugin.cc b/plugin/icedteanp/IcedTeaNPPlugin.cc index 5ce3489..89662ff 100644 --- a/plugin/icedteanp/IcedTeaNPPlugin.cc +++ b/plugin/icedteanp/IcedTeaNPPlugin.cc @@ -1179,7 +1179,7 @@ void consume_message(gchar* message) { 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) -- cgit v1.2.3