chromium/components/reporting/util/refcounted_closure_list.cc

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

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

}  // namespace reporting