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

Unified Diff: content/renderer/media/media_stream_audio_source.cc

Issue 524363003: Changed name of MediaStreamImpl to UserMediaClientImpl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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/media_stream_audio_source.cc
diff --git a/content/renderer/media/media_stream_audio_source.cc b/content/renderer/media/media_stream_audio_source.cc
index 92070d92211a2df871e6fcbceea8f9b164771f2c..dad7699e8501ddf38f3a4f52411fd46dd85dd74f 100644
--- a/content/renderer/media/media_stream_audio_source.cc
+++ b/content/renderer/media/media_stream_audio_source.cc
@@ -53,10 +53,10 @@ void MediaStreamAudioSource::AddTrack(
constraints,
this)) {
// The source failed to start.
- // MediaStreamImpl rely on the |stop_callback| to be triggered when the
- // last track is removed from the source. But in this case, the source is
- // is not even started. So we need to fail both adding the track and
- // trigger |stop_callback|.
+ // UserMediaClientImpl rely on the |stop_callback| to be triggered when
+ // the last track is removed from the source. But in this case, the
+ // source is is not even started. So we need to fail both adding the
+ // track and trigger |stop_callback|.
callback.Run(this, MEDIA_DEVICE_TRACK_START_FAILURE, "");
StopSource();
return;

Powered by Google App Engine
This is Rietveld 408576698