// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_REPORTING_METRICS_FAKES_FAKE_SAMPLER_H_ #define COMPONENTS_REPORTING_METRICS_FAKES_FAKE_SAMPLER_H_ #include <optional> #include "components/reporting/metrics/sampler.h" #include "components/reporting/proto/synced/metric_data.pb.h" namespace reporting::test { class FakeSampler : public Sampler { … }; class FakeDelayedSampler : public FakeSampler { … }; } // namespace reporting::test #endif // COMPONENTS_REPORTING_METRICS_FAKES_FAKE_SAMPLER_H_