diff --git a/dom/ipc/ContentParent.cpp b/dom/ipc/ContentParent.cpp index c03cf229c098..3dbe4da4bc5b 100644 --- a/dom/ipc/ContentParent.cpp +++ b/dom/ipc/ContentParent.cpp @@ -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) {