chromium/components/ukm/singular_ukm_entry.cc

// 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.

#include "components/ukm/singular_ukm_entry.h"

#include <memory>

#include "mojo/public/cpp/bindings/self_owned_receiver.h"
#include "services/metrics/public/cpp/ukm_recorder.h"

namespace ukm {

namespace {

// Browser process interface to receive the UkmEntry from remote processes.
class MojoSingularUkmInterface : public mojom::SingularUkmInterface {};

}  // namespace

void CreateSingularUkmInterface(
    mojo::PendingReceiver<mojom::SingularUkmInterface> receiver) {}

}  // namespace ukm