chromium/services/audio/log_adapter.h

// Copyright 2018 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_AUDIO_LOG_ADAPTER_H_
#define SERVICES_AUDIO_LOG_ADAPTER_H_

#include <string>

#include "media/audio/audio_logging.h"
#include "media/mojo/mojom/audio_logging.mojom.h"
#include "mojo/public/cpp/bindings/remote.h"

namespace media {
class AudioParameters;
}

namespace audio {

// This class wraps a Remote<media::mojom::AudioLog> into a media::AudioLog.
class LogAdapter : public media::AudioLog {};

}  // namespace audio

#endif  // SERVICES_AUDIO_LOG_ADAPTER_H_