Bug 1161623 - Use MOZ_DEV_EDITION for displaying non-profiler components in performance tool for fx40.0, instead of channel. r=bgrins

This commit is contained in:
Jordan Santell 2015-05-05 10:28:00 +02:00
parent ed82277965
commit f7fcde30ac

View File

@ -1443,16 +1443,15 @@ pref("devtools.performance.ui.show-idle-blocks", true);
pref("devtools.performance.ui.enable-memory", false);
pref("devtools.performance.ui.enable-framerate", true);
pref("devtools.performance.ui.show-jit-optimizations", false);
// If in aurora (40.0, will revert for 40.1), set default
// If in aurora/dev edition (40.0, will revert for 40.1), set default
// to retro mode.
// TODO bug 1160313
#if MOZ_UPDATE_CHANNEL == aurora
#ifdef MOZ_DEV_EDITION
pref("devtools.performance.ui.retro-mode", true);
#else
pref("devtools.performance.ui.retro-mode", false);
#endif
// The default cache UI setting
pref("devtools.cache.disabled", false);