+ Added OnSecurityChange() to nsIWebProgressListener interface.

+ Added dummy function to all users of nsIWebProgressListener
+ Added new security event sink.
+ Hooked up new event sink to docloader and friends.
+ Fixed memory leaks and crashes in nsSecureBrowserImpl.
+ Added AlertPrompt to nsIPrompt Interface.
+ Enabling xpcom test on unix.

Fixes bug 46872.  r=valeski/rpotts


git-svn-id: svn://10.0.0.236/trunk@79206 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dougt%netscape.com
2000-09-14 22:56:56 +00:00
parent f035fc6541
commit 5b5da682a9
31 changed files with 478 additions and 84 deletions

View File

@@ -524,6 +524,15 @@ nsDocShellTreeOwner::OnStatusChange(nsIWebProgress* aWebProgress,
return mOwnerProgressListener->OnStatusChange(aWebProgress, aRequest, aStatus, aMessage);
}
NS_IMETHODIMP
nsDocShellTreeOwner::OnSecurityChange(nsIWebProgress *aWebProgress,
nsIRequest *aRequest,
PRInt32 state)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
//*****************************************************************************
// nsDocShellTreeOwner: Helpers
//*****************************************************************************