bug 223151 nsJSProtocolHandler::Suspend and ::Resume not implemented

r+sr=bzbarsky
This commit is contained in:
cbiesinger%web.de 2003-10-30 21:23:15 +00:00
Родитель 9465415eda
Коммит 18ceca3db3
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -455,13 +455,13 @@ nsJSChannel::Cancel(nsresult aStatus)
NS_IMETHODIMP
nsJSChannel::Suspend()
{
return NS_OK;
return mStreamChannel->Suspend();
}
NS_IMETHODIMP
nsJSChannel::Resume()
{
return NS_OK;
return mStreamChannel->Resume();
}
//