chromium/components/reporting/metrics/collector_base.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/metrics/collector_base.h"

#include <utility>

#include "base/check.h"
#include "base/functional/bind.h"
#include "base/sequence_checker.h"
#include "base/task/bind_post_task.h"
#include "base/task/sequenced_task_runner.h"
#include "components/reporting/metrics/sampler.h"

namespace reporting {

CollectorBase::CollectorBase(Sampler* sampler) :{}

CollectorBase::~CollectorBase() {}

void CollectorBase::Collect(bool is_event_driven) {}

void CollectorBase::CheckOnSequence() const {}
}  // namespace reporting