1998-09-17 05:53:52 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
#include "nscore.h"
|
|
|
|
#include "nslayout.h"
|
|
|
|
#include "nsIFactory.h"
|
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsLayoutCID.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIHTMLContent.h"
|
1999-01-15 02:14:02 +03:00
|
|
|
#include "nsITextContent.h"
|
1998-12-03 23:21:40 +03:00
|
|
|
#include "nsIPresShell.h"
|
1999-02-12 02:12:28 +03:00
|
|
|
#include "nsIDOMSelection.h"
|
1998-12-10 21:04:37 +03:00
|
|
|
#include "nsIFrameUtil.h"
|
1998-09-17 05:53:52 +04:00
|
|
|
|
|
|
|
#include "nsHTMLAtoms.h"
|
|
|
|
#include "nsHTMLParts.h"
|
|
|
|
#include "nsDOMCID.h"
|
|
|
|
#include "nsIServiceManager.h"
|
1998-12-02 02:29:16 +03:00
|
|
|
#include "nsICSSParser.h"
|
1998-12-03 23:21:40 +03:00
|
|
|
#include "nsIHTMLStyleSheet.h"
|
1999-03-05 03:06:31 +03:00
|
|
|
#include "nsIHTMLCSSStyleSheet.h"
|
1998-12-04 00:44:12 +03:00
|
|
|
#include "nsIDOMRange.h"
|
1999-02-12 08:28:12 +03:00
|
|
|
#include "nsIContentIterator.h"
|
1998-12-11 05:35:54 +03:00
|
|
|
#include "nsINameSpaceManager.h"
|
1998-12-23 01:03:20 +03:00
|
|
|
#include "nsIScriptNameSetRegistry.h"
|
|
|
|
#include "nsIScriptNameSpaceManager.h"
|
|
|
|
#include "nsIScriptExternalNameSet.h"
|
1999-01-27 03:58:49 +03:00
|
|
|
#include "nsIEventListenerManager.h"
|
1998-09-17 05:53:52 +04:00
|
|
|
|
|
|
|
static NS_DEFINE_IID(kCHTMLDocumentCID, NS_HTMLDOCUMENT_CID);
|
1998-11-12 01:06:16 +03:00
|
|
|
static NS_DEFINE_IID(kCXMLDocumentCID, NS_XMLDOCUMENT_CID);
|
1998-09-17 05:53:52 +04:00
|
|
|
static NS_DEFINE_IID(kCImageDocumentCID, NS_IMAGEDOCUMENT_CID);
|
1998-12-02 02:29:16 +03:00
|
|
|
static NS_DEFINE_IID(kCCSSParserCID, NS_CSSPARSER_CID);
|
1998-12-03 23:21:40 +03:00
|
|
|
static NS_DEFINE_CID(kHTMLStyleSheetCID, NS_HTMLSTYLESHEET_CID);
|
1999-03-05 03:06:31 +03:00
|
|
|
static NS_DEFINE_CID(kHTMLCSSStyleSheetCID, NS_HTML_CSS_STYLESHEET_CID);
|
1998-12-23 01:03:20 +03:00
|
|
|
static NS_DEFINE_IID(kCHTMLImageElementCID, NS_HTMLIMAGEELEMENT_CID);
|
1998-12-04 00:44:12 +03:00
|
|
|
static NS_DEFINE_IID(kCRangeListCID, NS_RANGELIST_CID);
|
|
|
|
static NS_DEFINE_IID(kCRangeCID, NS_RANGE_CID);
|
1999-02-12 08:28:12 +03:00
|
|
|
static NS_DEFINE_IID(kCContentIteratorCID, NS_CONTENTITERATOR_CID);
|
1999-02-14 12:15:13 +03:00
|
|
|
static NS_DEFINE_IID(kCSubtreeIteratorCID, NS_SUBTREEITERATOR_CID);
|
1998-12-03 23:21:40 +03:00
|
|
|
static NS_DEFINE_CID(kPresShellCID, NS_PRESSHELL_CID);
|
|
|
|
static NS_DEFINE_CID(kTextNodeCID, NS_TEXTNODE_CID);
|
1998-12-11 05:35:54 +03:00
|
|
|
static NS_DEFINE_CID(kNameSpaceManagerCID, NS_NAMESPACEMANAGER_CID);
|
1998-12-10 21:04:37 +03:00
|
|
|
static NS_DEFINE_CID(kFrameUtilCID, NS_FRAME_UTIL_CID);
|
1999-01-27 03:58:49 +03:00
|
|
|
static NS_DEFINE_CID(kEventListenerManagerCID, NS_EVENTLISTENERMANAGER_CID);
|
1998-11-30 01:11:06 +03:00
|
|
|
|
|
|
|
|
1999-02-12 02:12:28 +03:00
|
|
|
extern nsresult NS_NewRangeList(nsIDOMSelection **);
|
1999-02-10 21:55:25 +03:00
|
|
|
extern nsresult NS_NewRange(nsIDOMRange **);
|
1999-02-12 08:28:12 +03:00
|
|
|
extern nsresult NS_NewContentIterator(nsIContentIterator **);
|
1999-02-14 12:15:13 +03:00
|
|
|
extern nsresult NS_NewContentSubtreeIterator(nsIContentIterator **);
|
1998-12-10 21:04:37 +03:00
|
|
|
extern nsresult NS_NewFrameUtil(nsIFrameUtil** aResult);
|
1998-09-17 05:53:52 +04:00
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static NS_DEFINE_IID(kISupportsIID, NS_ISUPPORTS_IID);
|
|
|
|
static NS_DEFINE_IID(kIFactoryIID, NS_IFACTORY_IID);
|
|
|
|
|
|
|
|
class nsLayoutFactory : public nsIFactory
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// nsISupports methods
|
|
|
|
NS_IMETHOD QueryInterface(const nsIID &aIID,
|
|
|
|
void **aResult);
|
|
|
|
NS_IMETHOD_(nsrefcnt) AddRef(void);
|
|
|
|
NS_IMETHOD_(nsrefcnt) Release(void);
|
|
|
|
|
|
|
|
// nsIFactory methods
|
|
|
|
NS_IMETHOD CreateInstance(nsISupports *aOuter,
|
|
|
|
const nsIID &aIID,
|
|
|
|
void **aResult);
|
|
|
|
|
|
|
|
NS_IMETHOD LockFactory(PRBool aLock);
|
|
|
|
|
|
|
|
nsLayoutFactory(const nsCID &aClass);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ~nsLayoutFactory();
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsrefcnt mRefCnt;
|
|
|
|
nsCID mClassID;
|
|
|
|
};
|
|
|
|
|
|
|
|
nsLayoutFactory::nsLayoutFactory(const nsCID &aClass)
|
|
|
|
{
|
|
|
|
mRefCnt = 0;
|
|
|
|
mClassID = aClass;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsLayoutFactory::~nsLayoutFactory()
|
|
|
|
{
|
|
|
|
NS_ASSERTION(mRefCnt == 0, "non-zero refcnt at destruction");
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult nsLayoutFactory::QueryInterface(const nsIID &aIID,
|
|
|
|
void **aResult)
|
|
|
|
{
|
|
|
|
if (aResult == NULL) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Always NULL result, in case of failure
|
|
|
|
*aResult = NULL;
|
|
|
|
|
|
|
|
if (aIID.Equals(kISupportsIID)) {
|
|
|
|
*aResult = (void *)(nsISupports*)this;
|
|
|
|
} else if (aIID.Equals(kIFactoryIID)) {
|
|
|
|
*aResult = (void *)(nsIFactory*)this;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*aResult == NULL) {
|
|
|
|
return NS_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
AddRef(); // Increase reference count for caller
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsrefcnt nsLayoutFactory::AddRef()
|
|
|
|
{
|
|
|
|
return ++mRefCnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsrefcnt nsLayoutFactory::Release()
|
|
|
|
{
|
|
|
|
if (--mRefCnt == 0) {
|
|
|
|
delete this;
|
|
|
|
return 0; // Don't access mRefCnt after deleting!
|
|
|
|
}
|
|
|
|
return mRefCnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult nsLayoutFactory::CreateInstance(nsISupports *aOuter,
|
|
|
|
const nsIID &aIID,
|
|
|
|
void **aResult)
|
|
|
|
{
|
|
|
|
nsresult res;
|
|
|
|
PRBool refCounted = PR_TRUE;
|
|
|
|
|
|
|
|
if (aResult == NULL) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aResult = NULL;
|
|
|
|
|
|
|
|
nsISupports *inst = nsnull;
|
|
|
|
|
|
|
|
// XXX ClassID check happens here
|
|
|
|
if (mClassID.Equals(kCHTMLDocumentCID)) {
|
|
|
|
res = NS_NewHTMLDocument((nsIDocument **)&inst);
|
1998-11-30 01:11:06 +03:00
|
|
|
if (!NS_SUCCEEDED(res)) {
|
1998-09-17 05:53:52 +04:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
refCounted = PR_TRUE;
|
|
|
|
}
|
1998-11-30 01:11:06 +03:00
|
|
|
else if (mClassID.Equals(kCXMLDocumentCID)) {
|
1998-11-12 01:06:16 +03:00
|
|
|
res = NS_NewXMLDocument((nsIDocument **)&inst);
|
1998-11-30 01:11:06 +03:00
|
|
|
if (!NS_SUCCEEDED(res)) {
|
1998-11-12 01:06:16 +03:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
refCounted = PR_TRUE;
|
|
|
|
}
|
1998-11-30 01:11:06 +03:00
|
|
|
else if (mClassID.Equals(kCImageDocumentCID)) {
|
1998-09-17 05:53:52 +04:00
|
|
|
res = NS_NewImageDocument((nsIDocument **)&inst);
|
1998-11-30 01:11:06 +03:00
|
|
|
if (!NS_SUCCEEDED(res)) {
|
1998-09-17 05:53:52 +04:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
refCounted = PR_TRUE;
|
|
|
|
}
|
1998-12-23 01:03:20 +03:00
|
|
|
else if (mClassID.Equals(kCHTMLImageElementCID)) {
|
|
|
|
res = NS_NewHTMLImageElement((nsIHTMLContent**)&inst, nsHTMLAtoms::img);
|
|
|
|
if (NS_FAILED(res)) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
refCounted = PR_TRUE;
|
1998-09-17 05:53:52 +04:00
|
|
|
}
|
1998-12-03 23:21:40 +03:00
|
|
|
else if (mClassID.Equals(kPresShellCID)) {
|
|
|
|
res = NS_NewPresShell((nsIPresShell**) &inst);
|
|
|
|
if (NS_FAILED(res)) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
refCounted = PR_TRUE;
|
|
|
|
}
|
1998-12-04 00:44:12 +03:00
|
|
|
else if (mClassID.Equals(kCRangeListCID)) {
|
1999-02-12 02:12:28 +03:00
|
|
|
res = NS_NewRangeList((nsIDOMSelection**)&inst);
|
1998-11-30 01:11:06 +03:00
|
|
|
if (!NS_SUCCEEDED(res)) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
refCounted = PR_TRUE;
|
|
|
|
}
|
1998-12-04 00:44:12 +03:00
|
|
|
else if (mClassID.Equals(kCRangeCID)) {
|
|
|
|
res = NS_NewRange((nsIDOMRange **)&inst);
|
|
|
|
if (!NS_SUCCEEDED(res)) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
refCounted = PR_TRUE;
|
1999-02-12 08:28:12 +03:00
|
|
|
}
|
|
|
|
else if (mClassID.Equals(kCContentIteratorCID)) {
|
|
|
|
res = NS_NewContentIterator((nsIContentIterator **)&inst);
|
|
|
|
if (!NS_SUCCEEDED(res)) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
refCounted = PR_TRUE;
|
|
|
|
}
|
1999-02-14 12:15:13 +03:00
|
|
|
else if (mClassID.Equals(kCSubtreeIteratorCID)) {
|
|
|
|
res = NS_NewContentSubtreeIterator((nsIContentIterator **)&inst);
|
|
|
|
if (!NS_SUCCEEDED(res)) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
refCounted = PR_TRUE;
|
|
|
|
}
|
1998-12-02 02:29:16 +03:00
|
|
|
else if (mClassID.Equals(kCCSSParserCID)) {
|
|
|
|
// XXX this should really be factored into a style-specific DLL so
|
|
|
|
// that all the HTML, generic layout, and style stuff isn't munged
|
|
|
|
// together.
|
|
|
|
if (NS_FAILED(res = NS_NewCSSParser((nsICSSParser**)&inst)))
|
|
|
|
return res;
|
|
|
|
refCounted = PR_TRUE;
|
|
|
|
}
|
1998-12-03 23:21:40 +03:00
|
|
|
else if (mClassID.Equals(kHTMLStyleSheetCID)) {
|
|
|
|
// XXX ibid
|
|
|
|
if (NS_FAILED(res = NS_NewHTMLStyleSheet((nsIHTMLStyleSheet**)&inst)))
|
|
|
|
return res;
|
|
|
|
refCounted = PR_TRUE;
|
1999-03-05 03:06:31 +03:00
|
|
|
}
|
|
|
|
else if (mClassID.Equals(kHTMLCSSStyleSheetCID)) {
|
|
|
|
// XXX ibid
|
|
|
|
if (NS_FAILED(res = NS_NewHTMLCSSStyleSheet((nsIHTMLCSSStyleSheet**)&inst)))
|
|
|
|
return res;
|
|
|
|
refCounted = PR_TRUE;
|
1998-12-03 23:21:40 +03:00
|
|
|
}
|
|
|
|
else if (mClassID.Equals(kTextNodeCID)) {
|
|
|
|
// XXX ibid
|
1999-01-15 02:14:02 +03:00
|
|
|
if (NS_FAILED(res = NS_NewTextNode((nsIContent**) &inst)))
|
1998-12-03 23:21:40 +03:00
|
|
|
return res;
|
|
|
|
refCounted = PR_TRUE;
|
|
|
|
}
|
1998-12-11 05:35:54 +03:00
|
|
|
else if (mClassID.Equals(kNameSpaceManagerCID)) {
|
|
|
|
if (NS_FAILED(res = NS_NewNameSpaceManager((nsINameSpaceManager**)&inst)))
|
|
|
|
return res;
|
|
|
|
refCounted = PR_TRUE;
|
|
|
|
}
|
1998-12-10 21:04:37 +03:00
|
|
|
else if (mClassID.Equals(kFrameUtilCID)) {
|
|
|
|
// XXX ibid
|
|
|
|
if (NS_FAILED(res = NS_NewFrameUtil((nsIFrameUtil**) &inst)))
|
|
|
|
return res;
|
|
|
|
refCounted = PR_TRUE;
|
|
|
|
}
|
1999-01-27 03:58:49 +03:00
|
|
|
else if (mClassID.Equals(kEventListenerManagerCID)) {
|
|
|
|
if (NS_FAILED(res = NS_NewEventListenerManager((nsIEventListenerManager**) &inst)))
|
|
|
|
return res;
|
|
|
|
refCounted = PR_TRUE;
|
|
|
|
}
|
1998-11-30 01:11:06 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
return NS_NOINTERFACE;
|
|
|
|
}
|
1998-09-17 05:53:52 +04:00
|
|
|
if (inst == NULL) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = inst->QueryInterface(aIID, aResult);
|
|
|
|
|
|
|
|
if (refCounted) {
|
|
|
|
NS_RELEASE(inst);
|
|
|
|
}
|
|
|
|
else if (res != NS_OK) {
|
|
|
|
// We didn't get the right interface, so clean up
|
|
|
|
delete inst;
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult nsLayoutFactory::LockFactory(PRBool aLock)
|
|
|
|
{
|
|
|
|
// Not implemented in simplest case.
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-12-23 01:03:20 +03:00
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
static NS_DEFINE_IID(kIScriptNameSetRegistryIID, NS_ISCRIPTNAMESETREGISTRY_IID);
|
|
|
|
static NS_DEFINE_IID(kCScriptNameSetRegistryCID, NS_SCRIPT_NAMESET_REGISTRY_CID);
|
|
|
|
static NS_DEFINE_IID(kIScriptNameSpaceManagerIID, NS_ISCRIPTNAMESPACEMANAGER_IID);
|
|
|
|
static NS_DEFINE_IID(kIScriptExternalNameSetIID, NS_ISCRIPTEXTERNALNAMESET_IID);
|
|
|
|
|
|
|
|
class LayoutScriptNameSet : public nsIScriptExternalNameSet {
|
|
|
|
public:
|
|
|
|
LayoutScriptNameSet();
|
|
|
|
~LayoutScriptNameSet();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
1998-12-31 00:35:35 +03:00
|
|
|
NS_IMETHOD InitializeClasses(nsIScriptContext* aScriptContext);
|
1998-12-23 01:03:20 +03:00
|
|
|
NS_IMETHOD AddNameSet(nsIScriptContext* aScriptContext);
|
|
|
|
};
|
|
|
|
|
|
|
|
LayoutScriptNameSet::LayoutScriptNameSet()
|
|
|
|
{
|
|
|
|
NS_INIT_REFCNT();
|
|
|
|
}
|
|
|
|
|
|
|
|
LayoutScriptNameSet::~LayoutScriptNameSet()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS(LayoutScriptNameSet, kIScriptExternalNameSetIID);
|
|
|
|
|
1998-12-31 00:35:35 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
LayoutScriptNameSet::InitializeClasses(nsIScriptContext* aScriptContext)
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-12-23 01:03:20 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
LayoutScriptNameSet::AddNameSet(nsIScriptContext* aScriptContext)
|
|
|
|
{
|
|
|
|
nsresult result = NS_OK;
|
|
|
|
nsIScriptNameSpaceManager* manager;
|
|
|
|
|
|
|
|
result = aScriptContext->GetNameSpaceManager(&manager);
|
|
|
|
if (NS_OK == result) {
|
|
|
|
result = manager->RegisterGlobalName("HTMLImageElement",
|
|
|
|
kCHTMLImageElementCID,
|
|
|
|
PR_TRUE);
|
|
|
|
NS_RELEASE(manager);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
1999-02-26 20:03:45 +03:00
|
|
|
static nsIScriptNameSetRegistry *gRegistry;
|
1998-09-17 05:53:52 +04:00
|
|
|
|
|
|
|
// return the proper factory to the caller
|
1998-12-01 01:15:00 +03:00
|
|
|
#if defined(XP_MAC) && defined(MAC_STATIC)
|
1999-02-26 13:17:14 +03:00
|
|
|
extern "C" NS_LAYOUT nsresult
|
|
|
|
NSGetFactory_LAYOUT_DLL(nsISupports* serviceMgr,
|
|
|
|
const nsCID &aClass,
|
|
|
|
const char *aClassName,
|
|
|
|
const char *aProgID,
|
|
|
|
nsIFactory **aFactory)
|
1998-09-17 05:53:52 +04:00
|
|
|
#else
|
1999-02-26 13:17:14 +03:00
|
|
|
extern "C" NS_LAYOUT nsresult
|
|
|
|
NSGetFactory(nsISupports* serviceMgr,
|
|
|
|
const nsCID &aClass,
|
|
|
|
const char *aClassName,
|
|
|
|
const char *aProgID,
|
|
|
|
nsIFactory **aFactory)
|
1998-09-17 05:53:52 +04:00
|
|
|
#endif
|
|
|
|
{
|
1999-02-26 20:03:45 +03:00
|
|
|
if (nsnull == gRegistry) {
|
1998-12-23 01:03:20 +03:00
|
|
|
nsresult result = nsServiceManager::GetService(kCScriptNameSetRegistryCID,
|
|
|
|
kIScriptNameSetRegistryIID,
|
1999-02-26 20:03:45 +03:00
|
|
|
(nsISupports **)&gRegistry);
|
1998-09-17 05:53:52 +04:00
|
|
|
if (NS_OK == result) {
|
1998-12-23 01:03:20 +03:00
|
|
|
LayoutScriptNameSet* nameSet = new LayoutScriptNameSet();
|
1999-02-26 20:03:45 +03:00
|
|
|
gRegistry->AddExternalNameSet(nameSet);
|
1998-09-17 05:53:52 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nsnull == aFactory) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aFactory = new nsLayoutFactory(aClass);
|
|
|
|
|
|
|
|
if (nsnull == aFactory) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (*aFactory)->QueryInterface(kIFactoryIID, (void**)aFactory);
|
|
|
|
}
|