Bug 1600283 - Remove uses of already_AddRefed. r=dom-workers-and-storage-reviewers,janv

Differential Revision: https://phabricator.services.mozilla.com/D55487

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Simon Giesecke 2019-12-16 13:18:46 +00:00
parent 35ffaed515
commit 475236755e

View File

@ -6143,7 +6143,7 @@ class DatabaseFile final : public PBackgroundIDBDatabaseFileParent {
* been written to disk), then return an input stream. Otherwise, if mBlobImpl
* is null (because the contents have been written to disk), returns null.
*/
already_AddRefed<nsIInputStream> GetInputStream(ErrorResult& rv) const;
MOZ_MUST_USE nsCOMPtr<nsIInputStream> GetInputStream(ErrorResult& rv) const;
/**
* To be called upon successful copying of the stream GetInputStream()
@ -6180,8 +6180,7 @@ class DatabaseFile final : public PBackgroundIDBDatabaseFileParent {
}
};
already_AddRefed<nsIInputStream> DatabaseFile::GetInputStream(
ErrorResult& rv) const {
nsCOMPtr<nsIInputStream> DatabaseFile::GetInputStream(ErrorResult& rv) const {
// We should only be called from our DB connection thread, not the background
// thread.
MOZ_ASSERT(!IsOnBackgroundThread());
@ -6196,7 +6195,7 @@ already_AddRefed<nsIInputStream> DatabaseFile::GetInputStream(
return nullptr;
}
return inputStream.forget();
return inputStream;
}
class TransactionBase {