Necko API changes: primarily nsIChannel, changing initialization parameters to accessors. Got javascript: evaluation to happen at the right time (when AsyncRead is called) as well as on the right thread.

This commit is contained in:
warren@netscape.com
2000-03-29 03:58:50 +00:00
parent 7b3838d6e9
commit a2fb078809
164 changed files with 4088 additions and 2332 deletions

View File

@@ -802,7 +802,7 @@ NS_IMETHODIMP pluginInstanceOwner :: GetURL(const char *aURL, const char *aTarge
{
// Create an absolute URL
char* absURIStr;
rv = NS_MakeAbsoluteURI(aURL, uri, &absURIStr);
rv = NS_MakeAbsoluteURI(&absURIStr, aURL, uri);
nsAutoString fullurl(absURIStr);
nsCRT::free(absURIStr);