Added nsILoadGroup argument to Necko APIs and reworked the nsLoadGroup...

git-svn-id: svn://10.0.0.236/branches/SeaMonkey_M9_BRANCH@43522 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rpotts%netscape.com
1999-08-18 22:07:04 +00:00
parent 4e9ed246c8
commit efaaab4abb
53 changed files with 852 additions and 198 deletions

View File

@@ -2056,7 +2056,7 @@ nsWebShell::DoLoadURL(const nsString& aUrlSpec,
// Pass notifications to BrowserAppCore just to be consistent with
// regular page loads thro' necko
nsCOMPtr<nsIChannel> dummyChannel;
rv = NS_OpenURI(getter_AddRefs(dummyChannel), url);
rv = NS_OpenURI(getter_AddRefs(dummyChannel), url, nsnull);
if (NS_FAILED(rv)) return rv;
mProcessedEndDocumentLoad = PR_FALSE;
@@ -2084,7 +2084,7 @@ nsWebShell::DoLoadURL(const nsString& aUrlSpec,
// Pass notifications to BrowserAppCore just to be consistent with
// regular necko loads.
nsCOMPtr<nsIChannel> dummyChannel;
rv = NS_OpenURI(getter_AddRefs(dummyChannel), url);
rv = NS_OpenURI(getter_AddRefs(dummyChannel), url, nsnull);
if (NS_FAILED(rv)) return rv;
mProcessedEndDocumentLoad = PR_FALSE;