Backing out all my changes for 90288. a=clayton.

git-svn-id: svn://10.0.0.236/branches/MOZILLA_0_9_2_BRANCH@99628 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
gagan%netscape.com
2001-07-20 05:07:41 +00:00
parent accb68a8bf
commit 7aa201eca9
12 changed files with 8 additions and 176 deletions

View File

@@ -2884,23 +2884,6 @@ nsresult nsParser::CreateTagStack(nsITagStack** aTagStack){
return NS_ERROR_OUT_OF_MEMORY;
}
/**
* Get the channel associated with this parser
* @update harishd,gagan 07/17/01
* @param aChannel out param that will contain the result
* @return NS_OK if successful
*/
NS_IMETHODIMP
nsParser::GetChannel(nsIChannel** aChannel)
{
nsresult result = NS_ERROR_NOT_AVAILABLE;
if (mParserContext && mParserContext->mRequest) {
result = mParserContext->mRequest->QueryInterface(NS_GET_IID(nsIChannel),
(void**)aChannel);
}
return result;
}
/**
* Get the DTD associated with this parser
* @update vidur 9/29/99