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

Side by Side Diff: content/renderer/media/media_stream_impl_stub.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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/renderer/media/media_stream_impl.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « content/renderer/media/media_stream_impl.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698