Bug 489239 - "comm-central windows builds broken by unit test for bug 58904" [r=ted.mielczarek]

This commit is contained in:
Mark Banner 2009-04-22 13:28:23 +01:00
Родитель fea61dc7fc
Коммит 4a299bd1cb
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -98,11 +98,16 @@
#include "nsCycleCollector.h"
#include "nsThreadUtils.h"
#include "nsTObserverArray.h"
#include "Mutex.h"
#include "Monitor.h"
#include "CondVar.h"
#if !defined(XP_OS2)
#include "nsWindowsRegKey.h"
#endif
using namespace mozilla;
class nsCStringContainer : private nsStringContainer_base { };
class nsStringContainer : private nsStringContainer_base { };
@ -294,4 +299,7 @@ void XXXNeverCalled()
NS_ProcessPendingEvents(nsnull, 0);
NS_HasPendingEvents(nsnull);
NS_ProcessNextEvent(nsnull, PR_FALSE);
Mutex theMutex("dummy");
Monitor theMonitor("dummy2");
CondVar theCondVar(theMutex, "dummy3");
}