#include "rtc_base/operations_chain.h"
#include "api/make_ref_counted.h"
#include "rtc_base/checks.h"
namespace rtc {
OperationsChain::CallbackHandle::CallbackHandle(
scoped_refptr<OperationsChain> operations_chain)
: … { … }
OperationsChain::CallbackHandle::~CallbackHandle() { … }
void OperationsChain::CallbackHandle::OnOperationComplete() { … }
scoped_refptr<OperationsChain> OperationsChain::Create() { … }
OperationsChain::OperationsChain() { … }
OperationsChain::~OperationsChain() { … }
void OperationsChain::SetOnChainEmptyCallback(
std::function<void()> on_chain_empty_callback) { … }
bool OperationsChain::IsEmpty() const { … }
std::function<void()> OperationsChain::CreateOperationsChainCallback() { … }
void OperationsChain::OnOperationComplete() { … }
}