Bug 793140 - Replace 'NS_OK' with 'true', r=qdot

This commit is contained in:
Eric Chou 2012-09-22 00:16:43 +08:00
Родитель c461ff018e
Коммит 98470da125
1 изменённых файлов: 4 добавлений и 4 удалений

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

@ -230,7 +230,7 @@ BluetoothServiceChildProcess::SetPinCodeInternal(
{
SendRequest(aRunnable,
SetPinCodeRequest(nsString(aDeviceAddress), nsString(aPinCode)));
return NS_OK;
return true;
}
bool
@ -241,7 +241,7 @@ BluetoothServiceChildProcess::SetPasskeyInternal(
{
SendRequest(aRunnable,
SetPasskeyRequest(nsString(aDeviceAddress), aPasskey));
return NS_OK;
return true;
}
bool
@ -257,7 +257,7 @@ BluetoothServiceChildProcess::SetPairingConfirmationInternal(
SendRequest(aRunnable,
DenyPairingConfirmationRequest(nsString(aDeviceAddress)));
}
return NS_OK;
return true;
}
bool
@ -273,7 +273,7 @@ BluetoothServiceChildProcess::SetAuthorizationInternal(
SendRequest(aRunnable,
DenyAuthorizationRequest(nsString(aDeviceAddress)));
}
return NS_OK;
return true;
}
nsresult