chromium/media/mojo/services/webrtc_video_perf_recorder.h

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

#ifndef MEDIA_MOJO_SERVICES_WEBRTC_VIDEO_PERF_RECORDER_H_
#define MEDIA_MOJO_SERVICES_WEBRTC_VIDEO_PERF_RECORDER_H_

#include <stdint.h>

#include "media/base/video_codecs.h"
#include "media/mojo/mojom/media_types.mojom.h"
#include "media/mojo/mojom/webrtc_video_perf.mojom.h"
#include "media/mojo/services/media_mojo_export.h"
#include "media/mojo/services/webrtc_video_perf_history.h"

namespace media {

// This class implements the mojo interface WebrtcVideoPerfRecorder. The purpose
// of the class is to receive video perf data from the browser process and pass
// the data on to the WebrtcVideoPerfHistory save callback.
class MEDIA_MOJO_EXPORT WebrtcVideoPerfRecorder
    : public media::mojom::WebrtcVideoPerfRecorder {};

}  // namespace media

#endif  // MEDIA_MOJO_SERVICES_WEBRTC_VIDEO_PERF_RECORDER_H_