blob: 5f8e6b1700b97063ef9ccdb81e0f7e098bb9814f [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 MEDIA_AUDIO_AUDIO_DEBUG_RECORDING_SESSION_IMPL_H_
#define MEDIA_AUDIO_AUDIO_DEBUG_RECORDING_SESSION_IMPL_H_
#include "media/audio/audio_debug_recording_session.h"
#include "media/base/media_export.h"
namespace base {
class FilePath;
}
namespace media {
class MEDIA_EXPORT AudioDebugRecordingSessionImpl
: public AudioDebugRecordingSession {
public:
explicit AudioDebugRecordingSessionImpl(
const base::FilePath& debug_recording_file_path);
~AudioDebugRecordingSessionImpl() override;
private:
DISALLOW_COPY_AND_ASSIGN(AudioDebugRecordingSessionImpl);
};
} // namespace media
#endif // MEDIA_AUDIO_AUDIO_DEBUG_RECORDING_SESSION_IMPL_H_