#include "components/reporting/util/refcounted_closure_list.h"
#include <memory>
#include "base/functional/callback.h"
#include "base/memory/ref_counted.h"
#include "base/memory/ref_counted_delete_on_sequence.h"
#include "base/memory/scoped_refptr.h"
#include "base/task/sequenced_task_runner.h"
#include "base/threading/thread.h"
namespace reporting {
RefCountedClosureList::RefCountedClosureList(
scoped_refptr<base::SequencedTaskRunner> sequenced_task_runner)
: … { … }
RefCountedClosureList::~RefCountedClosureList() { … }
void RefCountedClosureList::RegisterCompletionCallback(
base::OnceClosure callback) { … }
}