Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 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_BASE_RTC_AUDIO_RENDERER_H_ | |
| 6 #define MEDIA_BASE_RTC_AUDIO_RENDERER_H_ | |
| 7 | |
| 8 #include "base/memory/ref_counted.h" | |
| 9 #include "media/base/media_export.h" | |
| 10 | |
| 11 namespace media { | |
| 12 | |
| 13 class MEDIA_EXPORT RtcAudioRenderer | |
|
scherkus (not reviewing)
2012/10/25 17:47:39
I don't see any reason why this has to be in ./med
no longer working on chromium
2012/10/26 09:35:29
Good idea, I was also not sure if the location and
| |
| 14 : public base::RefCountedThreadSafe<RtcAudioRenderer> { | |
|
scherkus (not reviewing)
2012/10/25 17:47:39
what necessitates this being refcounted?
no longer working on chromium
2012/10/26 09:35:29
This needs to be ref-counted because it is used by
| |
| 15 public: | |
| 16 // Starts rendering audio. | |
| 17 virtual void Play() = 0; | |
| 18 | |
| 19 // Temporarily suspends rendering audio. | |
| 20 virtual void Pause() = 0; | |
| 21 | |
| 22 // Stops all operations in preparation for being deleted. | |
| 23 virtual void Stop() = 0; | |
| 24 | |
| 25 // Sets the output volume. | |
| 26 virtual void SetVolume(float volume) = 0; | |
| 27 | |
| 28 protected: | |
| 29 friend class base::RefCountedThreadSafe<RtcAudioRenderer>; | |
| 30 | |
| 31 RtcAudioRenderer(); | |
| 32 virtual ~RtcAudioRenderer(); | |
| 33 | |
| 34 private: | |
| 35 DISALLOW_COPY_AND_ASSIGN(RtcAudioRenderer); | |
| 36 }; | |
| 37 | |
| 38 } // namespace media | |
| 39 | |
| 40 #endif // MEDIA_BASE_AUDIO_RENDERER_H_ | |
| OLD | NEW |