mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 920551 - 2.d/2: fix ICC. r=hsinyi,khuey
This commit is contained in:
parent
ef188cef11
commit
bdc5cac42b
@ -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);
|
||||
|
||||
|
@ -128,7 +128,6 @@ LIBRARY_NAME = 'jsdombase_s'
|
||||
LOCAL_INCLUDES += [
|
||||
'../battery',
|
||||
'../bluetooth',
|
||||
'../icc/src',
|
||||
'../media',
|
||||
'../network/src',
|
||||
'../src/geolocation',
|
||||
|
@ -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',
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user