diff --git a/mozilla/extensions/pics/src/nsPICS.cpp b/mozilla/extensions/pics/src/nsPICS.cpp index 30934622953..131bc8dbb52 100644 --- a/mozilla/extensions/pics/src/nsPICS.cpp +++ b/mozilla/extensions/pics/src/nsPICS.cpp @@ -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; diff --git a/mozilla/webshell/embed/ActiveX/WebShellContainer.cpp b/mozilla/webshell/embed/ActiveX/WebShellContainer.cpp index 1732d402a3b..8d279c9ae1e 100644 --- a/mozilla/webshell/embed/ActiveX/WebShellContainer.cpp +++ b/mozilla/webshell/embed/ActiveX/WebShellContainer.cpp @@ -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; -} \ No newline at end of file +}