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

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

Issue 8480028: support video device enumeration from renderer process. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: code review Created 8 years, 11 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
« no previous file with comments | « content/renderer/media/media_stream_impl.h ('k') | content/renderer/media/media_stream_impl_stub.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/media_stream_impl.cc
===================================================================
--- content/renderer/media/media_stream_impl.cc (revision 118766)
+++ content/renderer/media/media_stream_impl.cc (working copy)
@@ -351,6 +351,35 @@
NOTIMPLEMENTED();
}
+void MediaStreamImpl::OnDevicesEnumerated(
+ int request_id,
+ const media_stream::StreamDeviceInfoArray& device_array) {
+ DVLOG(1) << "MediaStreamImpl::OnDevicesEnumerated("
+ << request_id << ")";
+ NOTIMPLEMENTED();
+}
+
+void MediaStreamImpl::OnDevicesEnumerationFailed(int request_id) {
+ DVLOG(1) << "MediaStreamImpl::OnDevicesEnumerationFailed("
+ << request_id << ")";
+ NOTIMPLEMENTED();
+}
+
+void MediaStreamImpl::OnDeviceOpened(
+ int request_id,
+ const std::string& label,
+ const media_stream::StreamDeviceInfo& video_device) {
+ DVLOG(1) << "MediaStreamImpl::OnDeviceOpened("
+ << request_id << ", " << label << ")";
+ NOTIMPLEMENTED();
+}
+
+void MediaStreamImpl::OnDeviceOpenFailed(int request_id) {
+ DVLOG(1) << "MediaStreamImpl::VideoDeviceOpenFailed("
+ << request_id << ")";
+ NOTIMPLEMENTED();
+}
+
void MediaStreamImpl::InitializeWorkerThread(talk_base::Thread** thread,
base::WaitableEvent* event) {
jingle_glue::JingleThreadWrapper::EnsureForCurrentThread();
« no previous file with comments | « content/renderer/media/media_stream_impl.h ('k') | content/renderer/media/media_stream_impl_stub.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698