Index: content/browser/renderer_host/media/audio_output_delegate_impl.h |
diff --git a/content/browser/renderer_host/media/audio_output_delegate_impl.h b/content/browser/renderer_host/media/audio_output_delegate_impl.h |
index e813479975610fa1f37b3ae36bc59967d3bd2f32..266a2020212f9327e6c711a36ba66baa736f6803 100644 |
--- a/content/browser/renderer_host/media/audio_output_delegate_impl.h |
+++ b/content/browser/renderer_host/media/audio_output_delegate_impl.h |
@@ -46,8 +46,6 @@ class CONTENT_EXPORT AudioOutputDelegateImpl |
~AudioOutputDelegateImpl() override; |
- // AudioOutputDelegate implementation. |
Max Morin
2017/03/31 07:04:20
Save comment?
o1ka
2017/03/31 09:15:28
Done.
|
- scoped_refptr<media::AudioOutputController> GetController() const override; |
int GetStreamId() const override; |
void OnPlayStream() override; |
void OnPauseStream() override; |
@@ -55,10 +53,12 @@ class CONTENT_EXPORT AudioOutputDelegateImpl |
private: |
class ControllerEventHandler; |
+ friend class AudioOutputDelegateTest; |
void SendCreatedNotification(); |
void OnError(); |
void UpdatePlayingState(bool playing); |
+ media::AudioOutputController* GetControllerForTesting() const; |
// This is the event handler which |this| send notifications to. |
EventHandler* subscriber_; |