| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/renderer/media/media_stream_impl.h" | 5 #include "content/renderer/media/media_stream_impl.h" |
| 6 | 6 |
| 7 #include "content/renderer/media/media_stream_dependency_factory.h" | 7 #include "content/renderer/media/media_stream_dependency_factory.h" |
| 8 #include "content/renderer/media/rtc_video_decoder.h" | 8 #include "content/renderer/media/rtc_video_decoder.h" |
| 9 #include "content/renderer/media/video_capture_impl_manager.h" | 9 #include "content/renderer/media/video_capture_impl_manager.h" |
| 10 #include "content/renderer/p2p/ipc_socket_factory.h" | 10 #include "content/renderer/p2p/ipc_socket_factory.h" |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 void MediaStreamImpl::OnStreamGenerationFailed(int request_id) { | 72 void MediaStreamImpl::OnStreamGenerationFailed(int request_id) { |
| 73 } | 73 } |
| 74 | 74 |
| 75 void MediaStreamImpl::OnVideoDeviceFailed(const std::string& label, | 75 void MediaStreamImpl::OnVideoDeviceFailed(const std::string& label, |
| 76 int index) { | 76 int index) { |
| 77 } | 77 } |
| 78 | 78 |
| 79 void MediaStreamImpl::OnAudioDeviceFailed(const std::string& label, | 79 void MediaStreamImpl::OnAudioDeviceFailed(const std::string& label, |
| 80 int index) { | 80 int index) { |
| 81 } | 81 } |
| 82 |
| 83 void MediaStreamImpl::OnDevicesEnumerated( |
| 84 int request_id, |
| 85 const media_stream::StreamDeviceInfoArray& device_array) { |
| 86 } |
| 87 |
| 88 void MediaStreamImpl::OnDevicesEnumerationFailed(int request_id) { |
| 89 } |
| 90 |
| 91 void MediaStreamImpl::OnDeviceOpened( |
| 92 int request_id, |
| 93 const std::string& label, |
| 94 const media_stream::StreamDeviceInfo& video_device) { |
| 95 } |
| 96 |
| 97 void MediaStreamImpl::OnDeviceOpenFailed(int request_id) { |
| 98 } |
| OLD | NEW |