This commit is contained in:
rpotts%netscape.com 2001-05-14 05:01:55 +00:00
Родитель c37a5b78e4
Коммит 8905add378
1 изменённых файлов: 2 добавлений и 6 удалений

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

@ -950,8 +950,7 @@ CertContentListener::init()
}
NS_IMETHODIMP
CertContentListener::OnStartURIOpen(nsIURI *aURI, const char *aWindowTarget,
PRBool *aAbortOpen)
CertContentListener::OnStartURIOpen(nsIURI *aURI, PRBool *aAbortOpen)
{
//if we don't want to handle the URI, return PR_TRUE in
//*aAbortOpen
@ -969,18 +968,16 @@ CertContentListener::GetProtocolHandler(nsIURI *aURI,
NS_IMETHODIMP
CertContentListener::IsPreferred(const char * aContentType,
nsURILoadCommand aCommand,
const char * aWindowTarget,
char ** aDesiredContentType,
PRBool * aCanHandleContent)
{
return CanHandleContent(aContentType, aCommand, aWindowTarget,
return CanHandleContent(aContentType, aCommand,
aDesiredContentType, aCanHandleContent);
}
NS_IMETHODIMP
CertContentListener::CanHandleContent(const char * aContentType,
nsURILoadCommand aCommand,
const char * aWindowTarget,
char ** aDesiredContentType,
PRBool * aCanHandleContent)
{
@ -997,7 +994,6 @@ CertContentListener::CanHandleContent(const char * aContentType,
NS_IMETHODIMP
CertContentListener::DoContent(const char * aContentType,
nsURILoadCommand aCommand,
const char * aWindowTarget,
nsIRequest * aRequest,
nsIStreamListener ** aContentHandler,
PRBool * aAbortProcess)