Bug 1530052 - Use remoting name for GDK program name and class. r=glandium

Differential Revision: https://phabricator.services.mozilla.com/D80371
This commit is contained in:
Jan Alexander Steffens (heftig) 2022-01-28 10:30:37 +00:00
parent abf42b1167
commit 2c6ac8059a
2 changed files with 6 additions and 12 deletions

View File

@ -4370,11 +4370,7 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
// consistently.
// Set program name to the one defined in application.ini.
{
nsAutoCString program(gAppData->name);
ToLowerCase(program);
g_set_prgname(program.get());
}
g_set_prgname(gAppData->remotingName);
// Initialize GTK here for splash.

View File

@ -27,6 +27,8 @@
# include "nsIObserverService.h"
#endif
#include "gfxPlatform.h"
#include "nsAppRunner.h"
#include "mozilla/XREAppData.h"
#include "ScreenHelperGTK.h"
#include "HeadlessScreenHelper.h"
#include "mozilla/widget/ScreenManager.h"
@ -257,13 +259,9 @@ nsresult nsAppShell::Init() {
// See https://bugzilla.gnome.org/show_bug.cgi?id=747634
//
// Only bother doing this for the parent process, since it's the one
// creating top-level windows. (At this point, a child process hasn't
// received the list of registered chrome packages, so the
// GetBrandShortName call would fail anyway.)
nsAutoString brandName;
mozilla::widget::WidgetUtils::GetBrandShortName(brandName);
if (!brandName.IsEmpty()) {
gdk_set_program_class(NS_ConvertUTF16toUTF8(brandName).get());
// creating top-level windows.
if (gAppData) {
gdk_set_program_class(gAppData->remotingName);
}
}
}