From 5d69ffdef880b7e16532a231c6de7bb7b05b7e38 Mon Sep 17 00:00:00 2001 From: Andreas Tolfsen Date: Wed, 24 Apr 2019 15:17:50 +0000 Subject: [PATCH] bug 1533831: remote: remove browser.fission.simulate pref; r=ochameau,yulia The browser.fission.simulate preference has been split into two preferences: fission.frontend.simulate-events and fission.frontend.simulate-messages. The remote agent briefly used the child actor system from the Firefox frontend code when we prototyped the initial remote agent, but it no longer relies on it. This means we can drop the reference to browser.fission.simulate altogether. DONTBUILD Differential Revision: https://phabricator.services.mozilla.com/D27538 --HG-- extra : moz-landing-system : lando --- remote/README | 2 +- remote/doc/Building.md | 2 +- remote/doc/Debugging.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/remote/README b/remote/README index 9f9d084b9344..fb29f23aabca 100644 --- a/remote/README +++ b/remote/README @@ -20,4 +20,4 @@ build it, put this in your mozconfig: This exposes a --remote-debugger flag you can use to start the remote agent: - % ./mach run --setpref "browser.fission.simulate=true" -- --remote-debugger + % ./mach run --remote-debugger diff --git a/remote/doc/Building.md b/remote/doc/Building.md index aa874b75c43a..7d898830fd68 100644 --- a/remote/doc/Building.md +++ b/remote/doc/Building.md @@ -9,7 +9,7 @@ To build it, put this in your [mozconfig]: This exposes a `--remote-debugger` flag you can use to start the remote agent: - % ./mach run --setpref "browser.fission.simulate=true" -- --remote-debugger + % ./mach run --remote-debugger When you make changes to the XPCOM component you need to rebuild in order for the changes to take effect. The most efficient way to diff --git a/remote/doc/Debugging.md b/remote/doc/Debugging.md index bfd4d8259887..8e5836ccee9a 100644 --- a/remote/doc/Debugging.md +++ b/remote/doc/Debugging.md @@ -9,6 +9,6 @@ To increase the internal logging verbosity you can use the If you use mach to start the Firefox: - ./mach run --setpref "browser.fission.simulate=true" --setpref "remote.log.level=Debug" -- --remote-debugger + ./mach run --setpref "remote.log.level=Debug" --remote-debugger [preference]: ./Prefs.md