Bug 683777 - Back out bug 646641 on suspicion of causing crashes. rs=smaug

This commit is contained in:
Justin Lebar
2011-10-12 20:15:28 -04:00
parent ac521edb69
commit eff8d26fd5
23 changed files with 780 additions and 1280 deletions

View File

@@ -66,7 +66,6 @@
// session history
#include "nsSHEntry.h"
#include "nsSHEntryShared.h"
#include "nsSHistory.h"
#include "nsSHTransaction.h"
@@ -88,15 +87,15 @@ Initialize()
nsresult rv = nsSHistory::Startup();
NS_ENSURE_SUCCESS(rv, rv);
nsSHEntryShared::Startup();
return NS_OK;
rv = nsSHEntry::Startup();
return rv;
}
static void
Shutdown()
{
nsSHistory::Shutdown();
nsSHEntryShared::Shutdown();
nsSHEntry::Shutdown();
gInitialized = false;
}