Bug 1068189 - Force disable browser.tabs.remote.autostart in non-nightly builds. r=felipe

This commit is contained in:
Jim Mathies 2014-09-23 09:41:59 -05:00
parent 48f033b905
commit 0d2e1dd798

View File

@ -4574,6 +4574,9 @@ mozilla::BrowserTabsRemote()
bool
mozilla::BrowserTabsRemoteAutostart()
{
#if !defined(NIGHTLY_BUILD)
return false;
#endif
if (!gBrowserTabsRemoteAutostartInitialized) {
bool hasIME = KeyboardMayHaveIME();
bool prefEnabled = Preferences::GetBool("browser.tabs.remote.autostart", false) ||