Chromium Code Reviews| Index: content/renderer/media/webrtc_local_audio_track.h |
| diff --git a/content/renderer/media/webrtc_local_audio_track.h b/content/renderer/media/webrtc_local_audio_track.h |
| index 3c912ea03b0747ba97cb32d1cfbe75f02bc4d82f..9362b7ce95e749f86f56a20dbadcfe9e99116484 100644 |
| --- a/content/renderer/media/webrtc_local_audio_track.h |
| +++ b/content/renderer/media/webrtc_local_audio_track.h |
| @@ -67,6 +67,11 @@ class CONTENT_EXPORT WebRtcLocalAudioTrack |
| webrtc::AudioTrackInterface* GetAudioAdapter() override; |
| + // Returns the output format of the capture source. May return an invalid |
| + // AudioParameters if the format is not yet available. |
| + // Called on the main render thread. |
| + const media::AudioParameters GetOutputFormat() const; |
|
dmichael (off chromium)
2015/01/27 18:24:10
ditto, drop the const before the return type.
Anand Mistry (off Chromium)
2015/01/27 23:14:50
Done.
|
| + |
| // Method called by the capturer to deliver the capture data. |
| // Called on the capture audio thread. |
| void Capture(const media::AudioBus& audio_bus, |