Bug 947096 - [Flatfish] Build break results from variable access that requires MOZ_B2G_RIL flag, r=echou

This commit is contained in:
Ben Tian 2013-12-06 15:17:24 +08:00
Родитель c245e30619
Коммит 924e0e833b
1 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -341,9 +341,12 @@ Call::IsActive()
/**
* BluetoothHfpManager
*/
BluetoothHfpManager::BluetoothHfpManager() : mPhoneType(PhoneType::NONE)
, mController(nullptr)
BluetoothHfpManager::BluetoothHfpManager() : mController(nullptr)
{
#ifdef MOZ_B2G_RIL
mPhoneType = PhoneType::NONE;
#endif // MOZ_B2G_RIL
Reset();
}