mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-08 12:22:34 +00:00
Bug 646312: Enable methodjit by default for chrome JavaScript, r=dmandelin
This commit is contained in:
parent
eccb67e307
commit
7a7383ffea
@ -29,9 +29,9 @@ user_pref("extensions.checkUpdateSecurity", false);
|
||||
user_pref("browser.EULA.override", true);
|
||||
user_pref("javascript.options.tracejit.chrome", true);
|
||||
user_pref("javascript.options.tracejit.content", true);
|
||||
user_pref("javascript.options.methodjit.chrome", false);
|
||||
user_pref("javascript.options.methodjit.chrome", true);
|
||||
user_pref("javascript.options.methodjit.content", true);
|
||||
user_pref("javascript.options.jitprofiling.chrome", false);
|
||||
user_pref("javascript.options.jitprofiling.chrome", true);
|
||||
user_pref("javascript.options.jitprofiling.content", true);
|
||||
user_pref("javascript.options.methodjit_always", false);
|
||||
user_pref("javascript.options.strict", false);
|
||||
|
@ -610,9 +610,9 @@ pref("javascript.options.relimit", true);
|
||||
pref("javascript.options.tracejit.content", true);
|
||||
pref("javascript.options.tracejit.chrome", true);
|
||||
pref("javascript.options.methodjit.content", true);
|
||||
pref("javascript.options.methodjit.chrome", false);
|
||||
pref("javascript.options.methodjit.chrome", true);
|
||||
pref("javascript.options.jitprofiling.content", true);
|
||||
pref("javascript.options.jitprofiling.chrome", false);
|
||||
pref("javascript.options.jitprofiling.chrome", true);
|
||||
pref("javascript.options.methodjit_always", false);
|
||||
// This preference limits the memory usage of javascript.
|
||||
// If you want to change these values for your device,
|
||||
|
Loading…
Reference in New Issue
Block a user