Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(151)

Side by Side Diff: media/base/audio_renderer_mixer_sink.h

Issue 1769933002: Looking up device id by session id for AudioRendererMixerInput (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698