зеркало из https://github.com/mozilla/gecko-dev.git
Tweaked the content sink to remove an unused argument from the Init method.
This commit is contained in:
Родитель
9cf9918ee2
Коммит
7b38b946bc
|
@ -25,7 +25,6 @@
|
|||
|
||||
class nsIDocument;
|
||||
class nsIRDFDataSource;
|
||||
class nsIWebShell;
|
||||
|
||||
// {E49AA620-C16C-11d2-A6AA-00104BDE6048}
|
||||
#define NS_IXULCONTENTSINK_IID \
|
||||
|
@ -38,7 +37,6 @@ public:
|
|||
static const nsIID& GetIID() { static nsIID iid = NS_IXULCONTENTSINK_IID; return iid; }
|
||||
|
||||
NS_IMETHOD Init(nsIDocument* aDocument,
|
||||
nsIWebShell* aWebShell,
|
||||
nsIRDFDataSource* aDataSource) = 0;
|
||||
};
|
||||
|
||||
|
|
|
@ -143,7 +143,7 @@ public:
|
|||
NS_IMETHOD AddEntityReference(const nsIParserNode& aNode);
|
||||
|
||||
// nsIXULContentSink
|
||||
NS_IMETHOD Init(nsIDocument* aDocument, nsIWebShell* aWebShell, nsIRDFDataSource* aDataSource);
|
||||
NS_IMETHOD Init(nsIDocument* aDocument, nsIRDFDataSource* aDataSource);
|
||||
|
||||
protected:
|
||||
static nsrefcnt gRefCnt;
|
||||
|
@ -841,7 +841,7 @@ XULContentSinkImpl::AddEntityReference(const nsIParserNode& aNode)
|
|||
// nsIRDFContentSink interface
|
||||
|
||||
NS_IMETHODIMP
|
||||
XULContentSinkImpl::Init(nsIDocument* aDocument, nsIWebShell* aWebShell, nsIRDFDataSource* aDataSource)
|
||||
XULContentSinkImpl::Init(nsIDocument* aDocument, nsIRDFDataSource* aDataSource)
|
||||
{
|
||||
nsresult rv;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче