1 // Copyright 2018 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef MEDIA_AUDIO_AUDIO_DEBUG_RECORDING_SESSION_IMPL_H_
6 #define MEDIA_AUDIO_AUDIO_DEBUG_RECORDING_SESSION_IMPL_H_
7 
8 #include "media/audio/audio_debug_recording_session.h"
9 #include "media/base/media_export.h"
10 
11 namespace base {
12 class FilePath;
13 }
14 
15 namespace media {
16 
17 class MEDIA_EXPORT AudioDebugRecordingSessionImpl
18     : public AudioDebugRecordingSession {
19  public:
20   explicit AudioDebugRecordingSessionImpl(
21       const base::FilePath& debug_recording_file_path);
22   ~AudioDebugRecordingSessionImpl() override;
23 
24  private:
25   DISALLOW_COPY_AND_ASSIGN(AudioDebugRecordingSessionImpl);
26 };
27 
28 }  // namespace media
29 
30 #endif  // MEDIA_AUDIO_AUDIO_DEBUG_RECORDING_SESSION_IMPL_H_
31