backing out my latest patch for bug 312760 to clear Tp regression.

This commit is contained in:
darin@meer.net
2006-03-01 18:30:51 +00:00
parent ebc305bb54
commit a4f0fac793
25 changed files with 2253 additions and 1386 deletions

View File

@@ -721,18 +721,3 @@ NS_DiscardSegment(nsIInputStream *inStr,
*countWritten = count;
return NS_OK;
}
//-----------------------------------------------------------------------------
NS_COM NS_METHOD
NS_WriteSegmentThunk(nsIInputStream *inStr,
void *closure,
const char *buffer,
PRUint32 offset,
PRUint32 count,
PRUint32 *countWritten)
{
nsWriteSegmentThunk *thunk = NS_STATIC_CAST(nsWriteSegmentThunk *, closure);
return thunk->mFun(thunk->mStream, thunk->mClosure, buffer, offset, count,
countWritten);
}