Chromium Code Reviews| Index: content/renderer/media/webrtc_audio_capturer.h |
| diff --git a/content/renderer/media/webrtc_audio_capturer.h b/content/renderer/media/webrtc_audio_capturer.h |
| index f01f8d0e27ca8a40ff2ff71f66a11af45aea4de3..5e60de38c0fe92689d79c91cffa724a39bfd3c83 100644 |
| --- a/content/renderer/media/webrtc_audio_capturer.h |
| +++ b/content/renderer/media/webrtc_audio_capturer.h |
| @@ -40,7 +40,7 @@ class WebRtcAudioCapturer |
| // SetCapturerSource() is called if client on the source side desires to |
| // provide their own captured audio data. Client is responsible for calling |
| // Start() on its own source to have the ball rolling. |
| - void SetCapturerSource(media::AudioCapturerSource* source); |
| + void SetCapturerSource(scoped_refptr<media::AudioCapturerSource> source); |
|
scherkus (not reviewing)
2012/11/28 21:55:01
nit: we like to const-ref-ify the scoped_refptr<>
miu
2012/11/28 22:20:54
Me too! ;-) Somehow I missed it this time. Done
|
| // Starts recording audio. |
| void Start(); |