Delete KeepBufferRefs helpers, and use of rtc::Bind.

The rtc::Bind usages are replaced with lambdas with copy-capture
of the ref pointers.

Bug: webrtc:11339
Change-Id: I2fb544fcd2780feac3d725993c360df91899b532
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/201201
Reviewed-by: Stefan Holmer <stefan@webrtc.org>
Reviewed-by: Danil Chapovalov <danilchap@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#32946}
This commit is contained in:
Niels Möller
2021-01-11 13:26:35 +01:00
committed by Commit Bot
parent 4a5c855008
commit a68bfc5537
4 changed files with 14 additions and 35 deletions

View File

@ -12,29 +12,23 @@
#define RTC_BASE_KEEP_REF_UNTIL_DONE_H_
#include "api/scoped_refptr.h"
#include "rtc_base/bind.h"
#include "rtc_base/callback.h"
#include "rtc_base/ref_count.h"
namespace rtc {
namespace impl {
template <class T>
static inline void DoNothing(const scoped_refptr<T>& object) {}
} // namespace impl
// KeepRefUntilDone keeps a reference to |object| until the returned
// callback goes out of scope. If the returned callback is copied, the
// reference will be released when the last callback goes out of scope.
template <class ObjectT>
static inline Callback0<void> KeepRefUntilDone(ObjectT* object) {
return rtc::Bind(&impl::DoNothing<ObjectT>, scoped_refptr<ObjectT>(object));
scoped_refptr<ObjectT> p(object);
return [p] {};
}
template <class ObjectT>
static inline Callback0<void> KeepRefUntilDone(
const scoped_refptr<ObjectT>& object) {
return rtc::Bind(&impl::DoNothing<ObjectT>, object);
return [object] {};
}
} // namespace rtc