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:
Timothy Nikkel 2013-09-30 12:53:46 -05:00
parent 79f86039ed
commit 8d822b49ca
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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.