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

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

Issue 11270012: Adding audio support to the new webmediaplyer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased and fixed some comments in rtc_audio_renderer.h Created 8 years, 1 month 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 | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698