Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2277)

Unified Diff: content/renderer/media/webrtc_audio_device_impl.h

Issue 12440027: Do not pass the string device_id via IPC message to create an audio input stream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressed palmer's comments Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/media/webrtc_audio_device_impl.h
diff --git a/content/renderer/media/webrtc_audio_device_impl.h b/content/renderer/media/webrtc_audio_device_impl.h
index 1b825e2d2db1ac14e6fb2cd11a793957eaa728b5..99d2a72033673f10df147a1d6805e6a1092b683d 100644
--- a/content/renderer/media/webrtc_audio_device_impl.h
+++ b/content/renderer/media/webrtc_audio_device_impl.h
@@ -212,9 +212,6 @@ class WebRtcAudioCapturerSink {
// Set the format for the capture audio parameters.
virtual void SetCaptureFormat(const media::AudioParameters& params) = 0;
- // Callback to notify the client that the capturer is being stopped.
- virtual void OnCaptureDeviceStopped() = 0;
-
protected:
virtual ~WebRtcAudioCapturerSink() {}
};
@@ -248,7 +245,6 @@ class CONTENT_EXPORT WebRtcAudioDeviceImpl
int audio_delay_milliseconds,
double volume) OVERRIDE;
virtual void SetCaptureFormat(const media::AudioParameters& params) OVERRIDE;
- virtual void OnCaptureDeviceStopped() OVERRIDE;
// webrtc::Module implementation.
virtual int32_t ChangeUniqueId(const int32_t id) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698