Committing changes to allow instantiation of nsIEventQueues.

git-svn-id: svn://10.0.0.236/trunk@30293 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
hyatt%netscape.com
1999-05-04 23:37:01 +00:00
parent 0bed0ef1da
commit efdf23946a
2 changed files with 2 additions and 14 deletions

View File

@@ -105,8 +105,7 @@ PrintUsage(void)
int main(int argc, char* argv[])
{
nsresult rv;
nsString controllerCID;
nsICmdLineService * cmdLineArgs = nsnull;
char * urlstr=nsnull;
@@ -447,13 +446,7 @@ int main(int argc, char* argv[])
}
}
/*
* XXX: Currently, the CID for the "controller" is passed in as an argument
* to CreateTopLevelWindow(...). Once XUL supports "controller"
* components this will be specified in the XUL description...
*/
controllerCID = "43147b80-8a39-11d2-9938-0080c7cb1081";
rv = appShell->CreateTopLevelWindow(nsnull, url, controllerCID, newWindow,
rv = appShell->CreateTopLevelWindow(nsnull, url, PR_TRUE, newWindow,
nsnull, nsnull, widthVal, heightVal);
NS_RELEASE(url);

View File

@@ -78,9 +78,6 @@ static NS_DEFINE_IID(kXPConnectFactoryCID, NS_XPCONNECTFACTORY_CID);
static NS_DEFINE_IID(kGlobalHistoryCID, NS_GLOBALHISTORY_CID);
static NS_DEFINE_IID(kNetSupportDialogCID, NS_NETSUPPORTDIALOG_CID);
static NS_DEFINE_IID(kProtocolHelperCID, NS_PROTOCOL_HELPER_CID);
///static NS_DEFINE_IID(kCBrowserControllerCID, NS_BROWSERCONTROLLER_CID);
//static NS_DEFINE_IID(kIEditFactoryIID, NS_IEDITORFACTORY_IID);
/*
* This evil file will go away when the XPCOM registry can be
@@ -123,8 +120,6 @@ NS_SetupRegistry_1()
nsComponentManager::RegisterComponent(kRDFCoreCID, NULL, NULL, APPCORES_DLL, PR_FALSE, PR_FALSE);
//All Editor registration is done in webshell/tests/viewer/nsSetupregistry.cpp
/// nsComponentManager::RegisterComponent(kCBrowserControllerCID, NULL, NULL, BROWSER_DLL, PR_FALSE, PR_FALSE);
}