chromium/third_party/webrtc/rtc_base/operations_chain.cc

/*
 *  Copyright 2019 The WebRTC Project Authors. All rights reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#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() {}

// static
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() {}

}  // namespace rtc