Backout edbb25e71396 (bug 766891) for b2g bustage

This commit is contained in:
Kan-Ru Chen 2012-06-22 15:11:11 +08:00
parent 7c779a3ee5
commit 4c59816c48

View File

@ -233,11 +233,10 @@ interface nsIRadioInterfaceLayer : nsISupports
const unsigned short CALL_STATE_DISCONNECTED = 10;
const unsigned short CALL_STATE_INCOMING = 11;
// Keep consistent with GECKO_NETWORK_STATE_* values in ril_consts.js
const unsigned short DATACALL_STATE_UNKNOWN = -1;
const unsigned short DATACALL_STATE_CONNECTING = 0;
const unsigned short DATACALL_STATE_CONNECTED = 1;
const unsigned short DATACALL_STATE_SUSPENDED = 2;
// Keep consistent with GECKO_DATACALL_STATE_* values in ril_consts.js
const unsigned short DATACALL_STATE_UNKNOWN = 0;
const unsigned short DATACALL_STATE_CONNECTING = 1;
const unsigned short DATACALL_STATE_CONNECTED = 2;
const unsigned short DATACALL_STATE_DISCONNECTING = 3;
const unsigned short DATACALL_STATE_DISCONNECTED = 4;