OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 CONTENT_RENDERER_MEDIA_AUDIO_DEVICE_FACTORY_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_AUDIO_DEVICE_FACTORY_H_ |
6 #define CONTENT_RENDERER_MEDIA_AUDIO_DEVICE_FACTORY_H_ | 6 #define CONTENT_RENDERER_MEDIA_AUDIO_DEVICE_FACTORY_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "content/common/content_export.h" | 9 #include "base/memory/ref_counted.h" |
10 | 10 |
11 namespace media { | 11 namespace media { |
12 class AudioInputDevice; | 12 class AudioInputDevice; |
13 class AudioRendererSink; | |
14 } | 13 } |
15 | 14 |
16 namespace content { | 15 namespace content { |
17 | 16 |
18 // A factory for creating AudioRendererSinks. There is a global factory | 17 class RendererAudioOutputDevice; |
| 18 |
| 19 // A factory for creating RendererAudioOutputDevices. There is a global factory |
19 // function that can be installed for the purposes of testing to provide | 20 // function that can be installed for the purposes of testing to provide |
20 // a specialized AudioRendererSink class. | 21 // a specialized AudioRendererSink class. |
21 class CONTENT_EXPORT AudioDeviceFactory { | 22 class AudioDeviceFactory { |
22 public: | 23 public: |
23 // Creates an AudioRendererSink using the currently registered factory, | 24 // Creates a RendererAudioOutputDevice using the currently registered factory. |
24 // or the default one if no factory is registered. Ownership of the returned | 25 static scoped_refptr<RendererAudioOutputDevice> NewOutputDevice(); |
25 // pointer will be passed to the caller. | |
26 static media::AudioRendererSink* NewOutputDevice(); | |
27 | 26 |
28 // TODO(henrika): Update AudioInputDevice to inherit from an interface | 27 // Creates an AudioInputDevice using the currently registered factory, |
29 // similar to AudioRendererSink, but for input. Same for the callback | 28 static scoped_refptr<media::AudioInputDevice> NewInputDevice(); |
30 // interfaces. | |
31 static media::AudioInputDevice* NewInputDevice(); | |
32 | 29 |
33 protected: | 30 protected: |
34 AudioDeviceFactory(); | 31 AudioDeviceFactory(); |
35 virtual ~AudioDeviceFactory(); | 32 virtual ~AudioDeviceFactory(); |
36 | 33 |
37 // You can derive from this class and specify an implementation for these | 34 // You can derive from this class and specify an implementation for these |
38 // functions to provide alternate audio device implementations. | 35 // functions to provide alternate audio device implementations. |
39 // If the return value of either of these function is NULL, we fall back | 36 // If the return value of either of these function is NULL, we fall back |
40 // on the default implementation. | 37 // on the default implementation. |
41 virtual media::AudioRendererSink* CreateOutputDevice() = 0; | 38 virtual RendererAudioOutputDevice* CreateOutputDevice() = 0; |
42 virtual media::AudioInputDevice* CreateInputDevice() = 0; | 39 virtual media::AudioInputDevice* CreateInputDevice() = 0; |
43 | 40 |
44 private: | 41 private: |
45 // The current globally registered factory. This is NULL when we should | 42 // The current globally registered factory. This is NULL when we should |
46 // create the default AudioRendererSinks. | 43 // create the default AudioRendererSinks. |
47 static AudioDeviceFactory* factory_; | 44 static AudioDeviceFactory* factory_; |
48 | 45 |
49 DISALLOW_COPY_AND_ASSIGN(AudioDeviceFactory); | 46 DISALLOW_COPY_AND_ASSIGN(AudioDeviceFactory); |
50 }; | 47 }; |
51 | 48 |
52 } // namespace content | 49 } // namespace content |
53 | 50 |
54 #endif // CONTENT_RENDERER_MEDIA_AUDIO_DEVICE_FACTORY_H_ | 51 #endif // CONTENT_RENDERER_MEDIA_AUDIO_DEVICE_FACTORY_H_ |
OLD | NEW |