Bug 380674, Move nsTObserverArray from content/* to xpcom/*, r=bsmedberg

This commit is contained in:
Olli.Pettay@helsinki.fi 2007-05-22 13:45:13 -07:00
Родитель 67ffa367fd
Коммит 376509ffd7
1 изменённых файлов: 8 добавлений и 0 удалений

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

@ -98,6 +98,7 @@
#include "nsCycleCollectionParticipant.h"
#include "nsCycleCollector.h"
#include "nsThreadUtils.h"
#include "nsTObserverArray.h"
#if !defined(WINCE) && !defined(XP_OS2)
#include "nsWindowsRegKey.h"
@ -123,6 +124,13 @@ void XXXNeverCalled()
array2.InsertElementAt(c, 0);
array1.AppendElements(array2);
}
{
nsTObserverArray<PRBool> dummyObserverArray;
PRBool a = PR_FALSE;
dummyObserverArray.AppendObserver(&a);
dummyObserverArray.RemoveObserver(&a);
dummyObserverArray.Clear();
}
nsStringHashSet();
nsCStringHashSet();
nsInt32HashSet();