blob: 0732b76310d82c4a7f8d876e505af272db1443bc [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SERVICES_AUDIO_PUBLIC_CPP_DEBUG_RECORDING_SESSION_FACTORY_H_
#define SERVICES_AUDIO_PUBLIC_CPP_DEBUG_RECORDING_SESSION_FACTORY_H_
#include <memory>
#include "services/audio/public/mojom/debug_recording.mojom.h"
namespace base {
class FilePath;
}
namespace media {
class AudioDebugRecordingSession;
}
namespace audio {
std::unique_ptr<media::AudioDebugRecordingSession>
CreateAudioDebugRecordingSession(
const base::FilePath& debug_recording_file_path,
mojo::PendingRemote<mojom::DebugRecording> debug_recording);
} // namespace audio
#endif // SERVICES_AUDIO_PUBLIC_CPP_DEBUG_RECORDING_SESSION_FACTORY_H_