mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 00:01:50 +00:00
Bug 918220. Part 2. Remove image.mem.allow_locking_in_content_processes pref from fennec pref file, it doesn't apply to fennec because it doesn't have content processes and could be confusing. Also, give the pref a default value in all.js. r=jmuizelaar
This commit is contained in:
parent
79f86039ed
commit
8d822b49ca
@ -567,7 +567,6 @@ pref("media.preload.auto", 2); // preload metadata if preload=auto
|
||||
|
||||
// optimize images memory usage
|
||||
pref("image.mem.decodeondraw", true);
|
||||
pref("image.mem.allow_locking_in_content_processes", false);
|
||||
pref("image.mem.min_discard_timeout_ms", 10000);
|
||||
|
||||
// enable touch events interfaces
|
||||
|
@ -4044,6 +4044,9 @@ pref("image.mem.discardable", true);
|
||||
// them to be decoded on demand when they are drawn.
|
||||
pref("image.mem.decodeondraw", true);
|
||||
|
||||
// Allows image locking of decoded image data in content processes.
|
||||
pref("image.mem.allow_locking_in_content_processes", true);
|
||||
|
||||
// Minimum timeout for image discarding (in milliseconds). The actual time in
|
||||
// which an image must inactive for it to be discarded will vary between this
|
||||
// value and twice this value.
|
||||
|
Loading…
Reference in New Issue
Block a user