| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_BROWSER_RENDERER_HOST_MEDIA_AUDIO_OUTPUT_DELEGATE_H_ | 5 #ifndef MEDIA_AUDIO_AUDIO_OUTPUT_DELEGATE_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_AUDIO_OUTPUT_DELEGATE_H_ | 6 #define MEDIA_AUDIO_AUDIO_OUTPUT_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "content/common/content_export.h" | 13 #include "media/base/media_export.h" |
| 14 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 class SharedMemory; | 16 class SharedMemory; |
| 17 class CancelableSyncSocket; | 17 class CancelableSyncSocket; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace media { | 20 namespace media { |
| 21 |
| 21 class AudioOutputController; | 22 class AudioOutputController; |
| 22 } | |
| 23 | 23 |
| 24 namespace content { | 24 class MEDIA_EXPORT AudioOutputDelegate { |
| 25 | |
| 26 class CONTENT_EXPORT AudioOutputDelegate { | |
| 27 public: | 25 public: |
| 28 class CONTENT_EXPORT EventHandler { | 26 // An AudioOutputDelegate must not call back to its EventHandler in its |
| 27 // constructor. |
| 28 class MEDIA_EXPORT EventHandler { |
| 29 public: | 29 public: |
| 30 virtual ~EventHandler() {} | 30 virtual ~EventHandler() {} |
| 31 | 31 |
| 32 // All these methods are called on the IO thread. | |
| 33 | |
| 34 // Called when construction is finished and the stream is ready for | 32 // Called when construction is finished and the stream is ready for |
| 35 // playout. | 33 // playout. |
| 36 virtual void OnStreamCreated(int stream_id, | 34 virtual void OnStreamCreated(int stream_id, |
| 37 base::SharedMemory* shared_memory, | 35 base::SharedMemory* shared_memory, |
| 38 base::CancelableSyncSocket* socket) = 0; | 36 base::CancelableSyncSocket* socket) = 0; |
| 39 | 37 |
| 40 // Called if stream encounters an error and has become unusable. | 38 // Called if stream encounters an error and has become unusable. |
| 41 virtual void OnStreamError(int stream_id) = 0; | 39 virtual void OnStreamError(int stream_id) = 0; |
| 42 }; | 40 }; |
| 43 | 41 |
| 44 virtual ~AudioOutputDelegate() {} | 42 virtual ~AudioOutputDelegate() {} |
| 45 | 43 |
| 46 // TODO(maxmorin): Remove GetController() when crbug.com/647185 is closed. | 44 // TODO(maxmorin): Remove GetController() when crbug.com/647185 is closed. |
| 47 // This function is used to provide control of the audio stream to | 45 // This function is used to provide control of the audio stream to |
| 48 // WebrtcAudioPrivateGetActiveSinkFunction and others in the webrtc extension | 46 // WebrtcAudioPrivateGetActiveSinkFunction and others in the webrtc extension |
| 49 // API. Since the controller is shared, this means that it might outlive the | 47 // API. Since the controller is shared, this means that it might outlive the |
| 50 // AudioOutputDelegate. In this case, it is still safe to call functions on | 48 // AudioOutputDelegate. In this case, it is still safe to call functions on |
| 51 // the controller, but it will not do anything. The controller is also shared | 49 // the controller, but it will not do anything. The controller is also shared |
| 52 // with AudioStreamMonitor. | 50 // with AudioStreamMonitor. |
| 53 virtual scoped_refptr<media::AudioOutputController> GetController() const = 0; | 51 virtual scoped_refptr<AudioOutputController> GetController() const = 0; |
| 54 virtual int GetStreamId() const = 0; | 52 virtual int GetStreamId() const = 0; |
| 55 | 53 |
| 56 // Stream control: | 54 // Stream control: |
| 57 virtual void OnPlayStream() = 0; | 55 virtual void OnPlayStream() = 0; |
| 58 virtual void OnPauseStream() = 0; | 56 virtual void OnPauseStream() = 0; |
| 59 virtual void OnSetVolume(double volume) = 0; | 57 virtual void OnSetVolume(double volume) = 0; |
| 60 }; | 58 }; |
| 61 | 59 |
| 62 } // namespace content | 60 } // namespace media |
| 63 | 61 |
| 64 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_AUDIO_OUTPUT_DELEGATE_H_ | 62 #endif // MEDIA_AUDIO_AUDIO_OUTPUT_DELEGATE_H_ |
| OLD | NEW |