Added XML display support. Added NotifyError method to nsIContentSink

git-svn-id: svn://10.0.0.236/trunk@14466 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
vidur%netscape.com
1998-11-11 22:04:42 +00:00
parent 4b5a532b07
commit 38bf6d6724
16 changed files with 82 additions and 12 deletions

View File

@@ -46,6 +46,8 @@ public:
NS_IMETHOD OpenContainer(const nsIParserNode& aNode);
NS_IMETHOD CloseContainer(const nsIParserNode& aNode);
NS_IMETHOD AddLeaf(const nsIParserNode& aNode);
NS_IMETHOD NotifyError(nsresult aErrorResult);
NS_IMETHOD AddProcessingInstruction(const nsIParserNode& aNode);
NS_IMETHOD AddComment(const nsIParserNode& aNode);
@@ -568,5 +570,9 @@ nsHTMLNullSink::WillResume(void) {
return NS_OK;
}
NS_IMETHODIMP
nsHTMLNullSink::NotifyError(nsresult aErrorResult)
{
return NS_OK;
}