+ 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

@@ -32,16 +32,16 @@ PRBool LoopInDir(nsILocalFile* file)
if(NS_FAILED(file->GetLeafName(&name)))
return PR_FALSE;
//printf("%s\t", name);
PRBool isDir;
printf("%s\n", name);
rv = file->IsDirectory(&isDir);
if (isDir == PR_TRUE)
{
nsCOMPtr<nsILocalFile> lfile = do_QueryInterface(file);
LoopInDir(lfile);
nsCOMPtr<nsILocalFile> lfile = do_QueryInterface(file);
LoopInDir(lfile);
}
nsMemory::Free(name);
nsMemory::Free(name);
}
return PR_TRUE;
}