Bug 920551 - 2.d/2: fix ICC. r=hsinyi,khuey

This commit is contained in:
Vicamo Yang 2013-10-29 16:12:40 +08:00
parent ef188cef11
commit bdc5cac42b
4 changed files with 5 additions and 5 deletions

View File

@ -824,9 +824,6 @@ pref("gfx.gralloc.fence-with-readpixels", true);
// Cell Broadcast API
pref("ril.cellbroadcast.disabled", false);
// ICC API
pref("dom.icc.enabled", true);
// Mobile Connection API
pref("dom.mobileconnection.enabled", true);

View File

@ -128,7 +128,6 @@ LIBRARY_NAME = 'jsdombase_s'
LOCAL_INCLUDES += [
'../battery',
'../bluetooth',
'../icc/src',
'../media',
'../network/src',
'../src/geolocation',

View File

@ -471,7 +471,6 @@ if CONFIG['MOZ_GAMEPAD']:
if CONFIG['MOZ_B2G_RIL']:
WEBIDL_FILES += [
'MozStkCommandEvent.webidl',
'MozVoicemail.webidl',
]
@ -517,6 +516,7 @@ if CONFIG['MOZ_B2G_RIL']:
'MozCellBroadcastEvent.webidl',
'MozEmergencyCbModeEvent.webidl',
'MozOtaStatusEvent.webidl',
'MozStkCommandEvent.webidl',
'MozVoicemailEvent.webidl',
'MozWifiConnectionInfoEvent.webidl',
'MozWifiStatusChangeEvent.webidl',

View File

@ -4529,7 +4529,11 @@ pref("dom.cellbroadcast.enabled", false);
#endif
// ICC API
#ifdef MOZ_B2G_RIL
pref("dom.icc.enabled", true);
#else
pref("dom.icc.enabled", false);
#endif
// Mobile Connection API
pref("dom.mobileconnection.enabled", false);