Bug 790417 - ContentParent::GetAll should include the pre-allocated process. r=cjones

This commit is contained in:
Justin Lebar 2012-10-02 00:11:41 -04:00
Родитель e2868483f2
Коммит 65ee6ce53d
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -405,6 +405,10 @@ ContentParent::GetAll(nsTArray<ContentParent*>& aArray)
if (gAppContentParents) {
gAppContentParents->EnumerateRead(&AppendToTArray, &aArray);
}
if (sPreallocatedAppProcess) {
aArray.AppendElement(sPreallocatedAppProcess);
}
}
void