New arguments to OnEndDocumentLoad() added

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

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

@ -208,7 +208,8 @@ nsWebCrawler::OnStartDocumentLoad(nsIDocumentLoader* loader, nsIURL* aURL,
NS_IMETHODIMP
nsWebCrawler::OnEndDocumentLoad(nsIDocumentLoader* loader,
nsIURL* aURL,
PRInt32 aStatus)
PRInt32 aStatus,
nsIDocumentLoaderObserver * aObserver)
{
if (nsnull == aURL) {
return NS_OK;

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

@ -46,7 +46,8 @@ public:
NS_IMETHOD OnStartDocumentLoad(nsIDocumentLoader* loader, nsIURL* aURL,
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);