[not part of the build] Fixes bustage resulting from bryner's nsITransport changes.

git-svn-id: svn://10.0.0.236/trunk@88648 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
darin%netscape.com 2001-03-06 07:35:54 +00:00
parent 14a9926b15
commit 90d3d3ddaf

View File

@ -356,7 +356,7 @@ nsCacheEntryDescriptor::GetSecurityInfo(nsISupports ** result)
NS_IMETHODIMP
nsCacheEntryDescriptor::GetProgressEventSink(nsIProgressEventSink ** result)
nsCacheEntryDescriptor::GetNotificationCallbacks(nsIInterfaceRequestor **result)
{
NS_ENSURE_ARG_POINTER(result);
if (!mCacheEntry) return NS_ERROR_NOT_AVAILABLE;
@ -366,10 +366,10 @@ nsCacheEntryDescriptor::GetProgressEventSink(nsIProgressEventSink ** result)
NS_IMETHODIMP
nsCacheEntryDescriptor::SetProgressEventSink(nsIProgressEventSink * progressEventSink)
nsCacheEntryDescriptor::SetNotificationCallbacks(nsIInterfaceRequestor *requestor,
PRBool isBackground)
{
if (!mCacheEntry) return NS_ERROR_NOT_AVAILABLE;
if (!progressEventSink) return NS_ERROR_NULL_POINTER;
return NS_ERROR_NOT_IMPLEMENTED;
}