// 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 SERVICES_METRICS_UKM_RECORDER_FACTORY_IMPL_H_ #define SERVICES_METRICS_UKM_RECORDER_FACTORY_IMPL_H_ #include "services/metrics/public/cpp/ukm_recorder.h" #include "services/metrics/public/mojom/ukm_interface.mojom.h" namespace metrics { // Implements the public mojo UkmRecorderFactory interface by wrapping the // UkmRecorder instance. class UkmRecorderFactoryImpl : public ukm::mojom::UkmRecorderFactory { … }; } // namespace metrics #endif // SERVICES_METRICS_UKM_RECORDER_FACTORY_IMPL_H_