Bug 1119746: Fix ref-counting of bluetoothd channels, r=btian

The class |BluetoothDaemonChannel| for the bluetoothd channels
supports reference counting. This patch fixes the respective
variable to use |nsRefPtr| instead of |nsAutoPtr|.
This commit is contained in:
Thomas Zimmermann 2015-01-20 10:17:31 +08:00
Родитель 6be32cd438
Коммит dd06eecb9d
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -131,8 +131,8 @@ protected:
private:
void DispatchError(BluetoothResultHandler* aRes, BluetoothStatus aStatus);
nsAutoPtr<BluetoothDaemonChannel> mCmdChannel;
nsAutoPtr<BluetoothDaemonChannel> mNtfChannel;
nsRefPtr<BluetoothDaemonChannel> mCmdChannel;
nsRefPtr<BluetoothDaemonChannel> mNtfChannel;
nsAutoPtr<BluetoothDaemonProtocol> mProtocol;
nsTArray<nsRefPtr<BluetoothResultHandler> > mResultHandlerQ;