зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1477129: Part 3 - Re-enable e10s on FreeBSD. r=froydnj
Backed out changeset 197fcba26a38 MozReview-Commit-ID: 4OOmP91hKXQ --HG-- extra : rebase_source : 92d3e01734c6154261a8003fcc481c9d81f00c38
This commit is contained in:
Родитель
5520b46fd0
Коммит
07727ed247
|
@ -60,9 +60,12 @@ var snapshotFormatters = {
|
|||
case 6:
|
||||
case 7:
|
||||
case 8:
|
||||
case 10:
|
||||
statusText = strings.GetStringFromName("multiProcessStatus." + data.autoStartStatus);
|
||||
break;
|
||||
|
||||
case 10:
|
||||
statusText = (Services.appinfo.OS == "Darwin" ? "OS X 10.6 - 10.8" : "Windows XP");
|
||||
break;
|
||||
}
|
||||
|
||||
$("multiprocess-box").textContent = strings.formatStringFromName("multiProcessWindows",
|
||||
|
|
|
@ -138,8 +138,8 @@ multiProcessStatus.5 = Disabled by lack of graphics hardware acceleration on Mac
|
|||
multiProcessStatus.6 = Disabled by unsupported text input
|
||||
multiProcessStatus.7 = Disabled by add-ons
|
||||
multiProcessStatus.8 = Disabled forcibly
|
||||
# No longer in use (bug 1296353) but we might bring this back.
|
||||
multiProcessStatus.9 = Disabled by graphics hardware acceleration on Windows XP
|
||||
multiProcessStatus.10 = Disabled by operating system bug
|
||||
multiProcessStatus.unknown = Unknown status
|
||||
|
||||
asyncPanZoom = Asynchronous Pan/Zoom
|
||||
|
|
|
@ -5155,7 +5155,7 @@ enum {
|
|||
// kE10sDisabledForAddons = 7, removed in bug 1406212
|
||||
kE10sForceDisabled = 8,
|
||||
// kE10sDisabledForXPAcceleration = 9, removed in bug 1296353
|
||||
kE10sDisabledForOperatingSystem = 10,
|
||||
// kE10sDisabledForOperatingSystem = 10, removed due to xp-eol
|
||||
};
|
||||
|
||||
const char* kForceEnableE10sPref = "browser.tabs.remote.force-enable";
|
||||
|
@ -5186,12 +5186,6 @@ BrowserTabsRemoteAutostart()
|
|||
status = kE10sDisabledByUser;
|
||||
}
|
||||
|
||||
#if defined(__FreeBSD__)
|
||||
// sendmsg() packet loss gotten worse, see bug 1475970
|
||||
gBrowserTabsRemoteAutostart = false;
|
||||
status = kE10sDisabledForOperatingSystem;
|
||||
#endif
|
||||
|
||||
// Uber override pref for manual testing purposes
|
||||
if (Preferences::GetBool(kForceEnableE10sPref, false)) {
|
||||
gBrowserTabsRemoteAutostart = true;
|
||||
|
|
Загрузка…
Ссылка в новой задаче