Bug 1585005 - Enable RDM Fission for all builds. r=bradwerth

Differential Revision: https://phabricator.services.mozilla.com/D81088
This commit is contained in:
Micah Tigley 2020-06-25 16:54:34 +00:00
Родитель f776b2f0cc
Коммит fa0431285c
1 изменённых файлов: 2 добавлений и 7 удалений

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

@ -2315,6 +2315,8 @@ pref("devtools.responsive.touchSimulation.enabled", false);
pref("devtools.responsive.metaViewport.enabled", true);
// The user agent of the viewport.
pref("devtools.responsive.userAgent", "");
// Enable the RDM browser UI in all builds.
pref("devtools.responsive.browserUI.enabled", true);
// Show the custom user agent input only in Nightly.
#if defined(NIGHTLY_BUILD)
@ -2323,13 +2325,6 @@ pref("devtools.responsive.userAgent", "");
pref("devtools.responsive.showUserAgentInput", false);
#endif
// Show the RDM browser UI in Nightly or DevEdition builds.
#if defined(NIGHTLY_BUILD) || defined(MOZ_DEV_EDITION)
pref("devtools.responsive.browserUI.enabled", true);
#else
pref("devtools.responsive.browserUI.enabled", false);
#endif
// Show tab debug targets for This Firefox (on by default for local builds).
#ifdef MOZILLA_OFFICIAL
pref("devtools.aboutdebugging.local-tab-debugging", false);