From 48cdb18bd03783f9d7e4a68d41f736c7d1f4b696 Mon Sep 17 00:00:00 2001 From: "peterlubczynski%netscape.com" Date: Fri, 13 Sep 2002 03:44:47 +0000 Subject: [PATCH] Correcting comments for deprecated interface method nsIPluginManager::GetURL(), patch by braden@endoframe.com, bug 38373 git-svn-id: svn://10.0.0.236/trunk@129488 18797224-902f-48f8-a5cc-f745e15eee43 --- .../plugin/base/public/nsIPluginManager.idl | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/mozilla/modules/plugin/base/public/nsIPluginManager.idl b/mozilla/modules/plugin/base/public/nsIPluginManager.idl index 7f94dab2406..f12cff4c4c9 100644 --- a/mozilla/modules/plugin/base/public/nsIPluginManager.idl +++ b/mozilla/modules/plugin/base/public/nsIPluginManager.idl @@ -134,10 +134,10 @@ interface nsIPluginManager : nsISupports * @param pluginInst - the plugin making the request. If NULL, the URL * is fetched in the background. * @param url - the URL to fetch - * @param target - the target window into which to load the URL - * @param notifyData - when present, URLNotify is called passing the - * notifyData back to the client. When NULL, this call behaves like - * NPN_GetURL. + * @param target - the target window into which to load the URL, or NULL if + * the data should be returned to the plugin via streamListener. + * @param streamListener - a stream listener to be used to return data to + * the plugin. May be NULL if target is not NULL. * @param altHost - an IP-address string that will be used instead of the * host specified in the URL. This is used to prevent DNS-spoofing * attacks. Can be defaulted to NULL meaning use the host in the URL. @@ -166,15 +166,15 @@ interface nsIPluginManager : nsISupports * @param pluginInst - the plugin making the request. If NULL, the URL * is fetched in the background. * @param url - the URL to fetch - * @param target - the target window into which to load the URL * @param postDataLength - the length of postData (if non-NULL) * @param postData - the data to POST. NULL specifies that there is not post * data * @param isFile - whether the postData specifies the name of a file to * post instead of data. The file will be deleted afterwards. - * @param notifyData - when present, URLNotify is called passing the - * notifyData back to the client. When NULL, this call behaves like - * NPN_GetURL. + * @param target - the target window into which to load the URL, or NULL if + * the data should be returned to the plugin via streamListener. + * @param streamListener - a stream listener to be used to return data to + * the plugin. May be NULL if target is not NULL. * @param altHost - an IP-address string that will be used instead of the * host specified in the URL. This is used to prevent DNS-spoofing * attacks. Can be defaulted to NULL meaning use the host in the URL.