Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2016 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 #ifndef MEDIA_BASE_AUDIO_RENDERER_MIXER_SINK_H_ | |
| 5 #define MEDIA_BASE_AUDIO_RENDERER_MIXER_SINK_H_ | |
| 6 | |
| 7 #include <string> | |
| 8 | |
| 9 #include "media/base/audio_renderer_sink.h" | |
| 10 | |
| 11 namespace media { | |
| 12 | |
| 13 // Special sink to be used by AudioRendererMixer | |
| 14 class AudioRendererMixerSink : public AudioRendererSink { | |
|
Guido Urdaneta
2016/03/08 14:53:09
Why not add GetDeviceId() to OutputDevice instead
o1ka
2016/04/05 15:13:38
Addressed in another CL
| |
| 15 public: | |
| 16 virtual std::string GetDeviceId() = 0; | |
| 17 | |
| 18 protected: | |
| 19 ~AudioRendererMixerSink() override{}; | |
|
Guido Urdaneta
2016/03/08 14:53:09
space after override.
| |
| 20 }; | |
| 21 | |
| 22 } // namespace media | |
| 23 | |
| 24 #endif // MEDIA_BASE_AUDIO_RENDERER_MIXER_SINK_H_ | |
| OLD | NEW |