OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_MANAGER_H_ | 5 #ifndef CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_MANAGER_H_ |
6 #define CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_MANAGER_H_ | 6 #define CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_MANAGER_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "media/audio/audio_manager_base.h" | 9 #include "media/audio/audio_manager_base.h" |
10 | 10 |
11 namespace chromecast { | 11 namespace chromecast { |
12 | 12 |
13 class TaskRunnerImpl; | |
14 | |
15 namespace media { | 13 namespace media { |
16 | 14 |
17 class CastAudioMixer; | 15 class CastAudioMixer; |
18 class MediaPipelineBackend; | 16 class MediaPipelineBackend; |
19 class MediaPipelineBackendManager; | 17 class MediaPipelineBackendManager; |
20 struct MediaPipelineDeviceParams; | 18 struct MediaPipelineDeviceParams; |
21 | 19 |
22 class CastAudioManager : public ::media::AudioManagerBase { | 20 class CastAudioManager : public ::media::AudioManagerBase { |
23 public: | 21 public: |
24 CastAudioManager( | 22 CastAudioManager( |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 std::unique_ptr<::media::AudioOutputStream> mixer_output_stream_; | 79 std::unique_ptr<::media::AudioOutputStream> mixer_output_stream_; |
82 std::unique_ptr<CastAudioMixer> mixer_; | 80 std::unique_ptr<CastAudioMixer> mixer_; |
83 | 81 |
84 DISALLOW_COPY_AND_ASSIGN(CastAudioManager); | 82 DISALLOW_COPY_AND_ASSIGN(CastAudioManager); |
85 }; | 83 }; |
86 | 84 |
87 } // namespace media | 85 } // namespace media |
88 } // namespace chromecast | 86 } // namespace chromecast |
89 | 87 |
90 #endif // CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_MANAGER_H_ | 88 #endif // CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_MANAGER_H_ |
OLD | NEW |