Bug 1312022 - Keep alive content processes on bc and dt. r=mrbkap

This commit is contained in:
Gabor Krizsanits 2016-11-02 11:13:43 +01:00
Родитель 22a574219b
Коммит 64e1070774
1 изменённых файлов: 8 добавлений и 0 удалений

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

@ -104,6 +104,14 @@ function testInit() {
}
if (gConfig.e10s) {
e10s_init();
let processCount = prefs.getIntPref("dom.ipc.processCount", 1);
if (processCount > 1) {
// Currently starting a content process is slow, to aviod timeouts, let's
// keep alive content processes.
prefs.setIntPref("dom.ipc.keepProcessesAlive", processCount);
}
let globalMM = Cc["@mozilla.org/globalmessagemanager;1"]
.getService(Ci.nsIMessageListenerManager);
globalMM.loadFrameScript("chrome://mochikit/content/shutdown-leaks-collector.js", true);