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

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

Issue 11146008: remove VideoDeviceError and AudioDeviceError for media stream. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 2 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_impl.cc
===================================================================
--- content/renderer/media/media_stream_impl.cc (revision 161798)
+++ content/renderer/media/media_stream_impl.cc (working copy)
@@ -285,24 +285,6 @@
user_media_request.requestFailed();
}
-void MediaStreamImpl::OnVideoDeviceFailed(const std::string& label,
- int index) {
- DCHECK(CalledOnValidThread());
- DVLOG(1) << "MediaStreamImpl::OnVideoDeviceFailed("
- << label << ", " << index << ")";
- // TODO(grunell): Implement. Currently not supported in WebKit.
- NOTIMPLEMENTED();
-}
-
-void MediaStreamImpl::OnAudioDeviceFailed(const std::string& label,
- int index) {
- DCHECK(CalledOnValidThread());
- DVLOG(1) << "MediaStreamImpl::OnAudioDeviceFailed("
- << label << ", " << index << ")";
- // TODO(grunell): Implement. Currently not supported in WebKit.
- NOTIMPLEMENTED();
-}
-
void MediaStreamImpl::OnDevicesEnumerated(
int request_id,
const media_stream::StreamDeviceInfoArray& device_array) {
« no previous file with comments | « content/renderer/media/media_stream_impl.h ('k') | content/renderer/pepper/pepper_device_enumeration_event_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698