void
BluetoothServiceChildProcess::SetPasskeyInternal(
  const BluetoothAddress& aDeviceAddress,
  uint32_t aPasskey,
  BluetoothReplyRunnable* aRunnable)
{
  SendRequest(aRunnable, SetPasskeyRequest(aDeviceAddress, aPasskey));
}
bool
BluetoothServiceChildProcess::SetPasskeyInternal(
                                                const nsAString& aDeviceAddress,
                                                uint32_t aPasskey,
                                                BluetoothReplyRunnable* aRunnable)
{
  SendRequest(aRunnable,
              SetPasskeyRequest(nsString(aDeviceAddress), aPasskey));
  return true;
}