Bug 920551 - 2.c/2: fix CellBroadcast. r=hsinyi

This commit is contained in:
Vicamo Yang 2013-10-29 16:12:39 +08:00
parent 131eae1652
commit 600a32f491
2 changed files with 4 additions and 1 deletions

View File

@ -822,7 +822,6 @@ pref("gfx.canvas.skiagl.dynamic-cache", true);
pref("gfx.gralloc.fence-with-readpixels", true);
// Cell Broadcast API
pref("dom.cellbroadcast.enabled", true);
pref("ril.cellbroadcast.disabled", false);
// ICC API

View File

@ -4522,7 +4522,11 @@ pref("dom.telephony.enabled", false);
pref("dom.telephony.defaultServiceId", 0);
// Cell Broadcast API
#ifdef MOZ_B2G_RIL
pref("dom.cellbroadcast.enabled", true);
#else
pref("dom.cellbroadcast.enabled", false);
#endif
// ICC API
pref("dom.icc.enabled", false);