diff options
author | Moonchild <moonchild@palemoon.org> | 2022-01-11 15:34:17 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2022-04-08 00:55:37 +0200 |
commit | 56d9003017a94e7619f98e76b04929115514d08c (patch) | |
tree | 952bd79e8cb7cfa2d071b6dbf13d95caed9d24fa /dom/push | |
parent | e49b80dba7393d5baff831251f7981bc21324d81 (diff) | |
download | uxp-56d9003017a94e7619f98e76b04929115514d08c.tar.gz |
Issue #953 - Neuter the user-facing controls for e10s
This should prevent people using a massive footgun that would blow off
their entire legs. Requires appropriate FE changes.
Diffstat (limited to 'dom/push')
-rw-r--r-- | dom/push/PushNotifier.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/dom/push/PushNotifier.cpp b/dom/push/PushNotifier.cpp index e60db2d975..5e2a637500 100644 --- a/dom/push/PushNotifier.cpp +++ b/dom/push/PushNotifier.cpp @@ -113,12 +113,7 @@ PushNotifier::Dispatch(PushDispatcher& aDispatcher) return NS_OK; } - if (BrowserTabsRemoteAutostart()) { - // e10s is enabled, but no content processes are active. - return aDispatcher.HandleNoChildProcesses(); - } - - // e10s is disabled; notify workers in the parent. + // Notify workers in the parent. return aDispatcher.NotifyWorkers(); } |