chromium/components/metrics/debug/structured/structured_metrics_debug_provider.h

// Copyright 2023 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_METRICS_DEBUG_STRUCTURED_STRUCTURED_METRICS_DEBUG_PROVIDER_H_
#define COMPONENTS_METRICS_DEBUG_STRUCTURED_STRUCTURED_METRICS_DEBUG_PROVIDER_H_

#include "base/memory/raw_ptr.h"
#include "components/metrics/structured/event.h"
#include "components/metrics/structured/recorder.h"
#include "components/metrics/structured/structured_metrics_recorder.h"

namespace metrics::structured {

class StructuredMetricsService;

// Provides events recorded by Structured Metrics Recorder.
// TODO(b/314841749): Update this class to use a watcher interface.
class StructuredMetricsDebugProvider
    : public StructuredMetricsRecorder::Observer {};

}  // namespace metrics::structured

#endif  // COMPONENTS_METRICS_DEBUG_STRUCTURED_STRUCTURED_METRICS_DEBUG_PROVIDER_H_