Bug 964087 - Display the correct name for Nuwa processes r=khuey

This commit is contained in:
Fabrice Desré 2014-02-03 10:58:11 -08:00
Родитель 11ba63a48b
Коммит 7d09516b33
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -2256,6 +2256,11 @@ void
ContentParent::FriendlyName(nsAString& aName)
{
aName.Truncate();
#ifdef MOZ_NUWA_PROCESS
if (IsNuwaProcess()) {
aName.AssignLiteral("(Nuwa)");
} else
#endif
if (IsPreallocated()) {
aName.AssignLiteral("(Preallocated)");
} else if (mIsForBrowser) {