/hg/release/icedtea-web-1.0: Use NPN_GetURLNotify (non-blocking)...

dbhole at icedtea.classpath.org dbhole at icedtea.classpath.org
Thu Apr 21 08:08:11 PDT 2011


changeset bb091ba157f2 in /hg/release/icedtea-web-1.0
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.0?cmd=changeset;node=bb091ba157f2
author: Deepak Bhole <dbhole at redhat.com>
date: Thu Apr 21 11:06:03 2011 -0400

	Use NPN_GetURLNotify (non-blocking) instead of NPN_GetURL
	(blocking).


diffstat:

 ChangeLog                           |  6 ++++++
 plugin/icedteanp/IcedTeaNPPlugin.cc |  2 +-
 2 files changed, 7 insertions(+), 1 deletions(-)

diffs (25 lines):

diff -r 2b7512af4dcc -r bb091ba157f2 ChangeLog
--- a/ChangeLog	Mon Apr 18 13:16:39 2011 -0400
+++ b/ChangeLog	Thu Apr 21 11:06:03 2011 -0400
@@ -1,3 +1,9 @@
+2011-04-21  Deepak Bhole <dbhole at 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.
+
 2011-04-18  Deepak Bhole <dbhole at redhat.com>
 
 	* plugin/icedteanp/java/sun/applet/PluginAppletViewer.java
diff -r 2b7512af4dcc -r bb091ba157f2 plugin/icedteanp/IcedTeaNPPlugin.cc
--- a/plugin/icedteanp/IcedTeaNPPlugin.cc	Mon Apr 18 13:16:39 2011 -0400
+++ b/plugin/icedteanp/IcedTeaNPPlugin.cc	Thu Apr 21 11:06:03 2011 -0400
@@ -1177,7 +1177,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)



More information about the distro-pkg-dev mailing list