chromium/services/audio/public/cpp/debug_recording_session_factory.cc

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

#include "services/audio/public/cpp/debug_recording_session_factory.h"

#include <utility>

#include "base/files/file_path.h"
#include "services/audio/public/cpp/debug_recording_session.h"

namespace audio {

std::unique_ptr<media::AudioDebugRecordingSession>
CreateAudioDebugRecordingSession(
    const base::FilePath& debug_recording_file_path,
    mojo::PendingRemote<mojom::DebugRecording> debug_recording) {}

}  // namespace audio