Bug 337917 Make consumers stop using cids from other modules

r=darin sr=darin


git-svn-id: svn://10.0.0.236/trunk@198972 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
timeless%mozdev.org
2006-06-03 23:28:13 +00:00
parent 2bf8481b6f
commit 64538e7cd1
6 changed files with 6 additions and 23 deletions

View File

@@ -88,10 +88,6 @@ extern "C" void RunChromeInstallOnThread(void *data);
// Globals
////////////////////////////////////////////////////////////////////////////////
static NS_DEFINE_CID(kIProcessCID, NS_PROCESS_CID);
nsSoftwareUpdate* nsSoftwareUpdate::mInstance = nsnull;
nsCOMPtr<nsIFile> nsSoftwareUpdate::mProgramDir = nsnull;
char* nsSoftwareUpdate::mLogName = nsnull;
@@ -219,7 +215,7 @@ nsSoftwareUpdate::Shutdown()
//Create the Process framework
pathToCleanupUtility->AppendNative(CLEANUP_UTIL);
nsCOMPtr<nsIProcess> cleanupProcess = do_CreateInstance(kIProcessCID);
nsCOMPtr<nsIProcess> cleanupProcess = do_CreateInstance(NS_PROCESS_CONTRACTID);
rv = cleanupProcess->Init(pathToCleanupUtility);
if (NS_SUCCEEDED(rv))
{