Skip to content

Commit

Permalink
Bug 920551 - 2.d/2: fix ICC. r=hsinyi,khuey
Browse files Browse the repository at this point in the history
  • Loading branch information
Vicamo Yang committed Oct 29, 2013
1 parent 2a45e4e commit fdf3d4b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
3 changes: 0 additions & 3 deletions b2g/app/b2g.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
1 change: 0 additions & 1 deletion dom/base/moz.build
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ LIBRARY_NAME = 'jsdombase_s'
LOCAL_INCLUDES += [
'../battery',
'../bluetooth',
'../icc/src',
'../media',
'../network/src',
'../src/geolocation',
Expand Down
2 changes: 1 addition & 1 deletion dom/webidl/moz.build
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,6 @@ if CONFIG['MOZ_GAMEPAD']:

if CONFIG['MOZ_B2G_RIL']:
WEBIDL_FILES += [
'MozStkCommandEvent.webidl',
'MozVoicemail.webidl',
]

Expand Down Expand Up @@ -517,6 +516,7 @@ if CONFIG['MOZ_B2G_RIL']:
'MozCellBroadcastEvent.webidl',
'MozEmergencyCbModeEvent.webidl',
'MozOtaStatusEvent.webidl',
'MozStkCommandEvent.webidl',
'MozVoicemailEvent.webidl',
'MozWifiConnectionInfoEvent.webidl',
'MozWifiStatusChangeEvent.webidl',
Expand Down
4 changes: 4 additions & 0 deletions modules/libpref/src/init/all.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit fdf3d4b

Please sign in to comment.