Bug 1041440: Create Promise using |Promise::Create|, r=btian

This patch fixes a call to the private constructor of |Promise|.
This commit is contained in:
Thomas Zimmermann 2014-07-21 12:41:29 +02:00
Родитель 030f988b52
Коммит 8fbff9070d
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -457,7 +457,10 @@ BluetoothAdapter::StopDiscovery(ErrorResult& aRv)
aRv.Throw(NS_ERROR_FAILURE);
return nullptr;
}
nsRefPtr<Promise> promise = new Promise(global);
nsRefPtr<Promise> promise = Promise::Create(global, aRv);
if (aRv.Failed()) {
return nullptr;
}
/**
* Ensure