New arguments to OnEndDocumentLoad()

This commit is contained in:
radha%netscape.com 1999-06-14 23:37:37 +00:00
Родитель b80eb770ef
Коммит f2d7e4c640
2 изменённых файлов: 6 добавлений и 4 удалений

Просмотреть файл

@ -147,7 +147,8 @@ public:
const char* aCommand);
NS_IMETHOD OnEndDocumentLoad(nsIDocumentLoader* loader,
nsIURL* aURL,
PRInt32 aStatus);
PRInt32 aStatus,
nsIDocumentLoaderObserver * aObserver);
NS_IMETHOD OnStartURLLoad(nsIDocumentLoader* loader,
nsIURL* aURL, const char* aContentType,
nsIContentViewer* aViewer);
@ -755,7 +756,8 @@ nsPICS::OnStartDocumentLoad(nsIDocumentLoader* loader,
NS_IMETHODIMP
nsPICS::OnEndDocumentLoad(nsIDocumentLoader* loader,
nsIURL* aURL,
PRInt32 aStatus)
PRInt32 aStatus,
nsIDocumentLoaderObserver * aObserver)
{
nsresult rv = NS_OK;

Просмотреть файл

@ -337,7 +337,7 @@ CWebShellContainer::OnStartDocumentLoad(nsIDocumentLoader* loader, nsIURL* aURL,
// we need this to fire the document complete
NS_IMETHODIMP
CWebShellContainer::OnEndDocumentLoad(nsIDocumentLoader* loader, nsIURL *aUrl, PRInt32 aStatus)
CWebShellContainer::OnEndDocumentLoad(nsIDocumentLoader* loader, nsIURL *aUrl, PRInt32 aStatus, nsIDocumentLoaderObserver * aObserver)
{
PRUnichar* wString = nsnull;
@ -391,4 +391,4 @@ NS_IMETHODIMP
CWebShellContainer::HandleUnknownContentType(nsIDocumentLoader* loader, nsIURL *aURL, const char *aContentType, const char *aCommand )
{
return NS_OK;
}
}