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

Unified Diff: content/browser/renderer_host/media/audio_input_renderer_host_unittest.cc

Issue 2729783003: [Mojo Video Capture] Add content_browsertest for exercising video capture (Closed)
Patch Set: incorporated miu@'s suggestions Created 3 years, 9 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/browser/renderer_host/media/audio_input_renderer_host_unittest.cc
diff --git a/content/browser/renderer_host/media/audio_input_renderer_host_unittest.cc b/content/browser/renderer_host/media/audio_input_renderer_host_unittest.cc
index 856da39c8ca949c91d2226143070a243fe4500bb..7b843768dc83eceaf3143a915a6565c537545454 100644
--- a/content/browser/renderer_host/media/audio_input_renderer_host_unittest.cc
+++ b/content/browser/renderer_host/media/audio_input_renderer_host_unittest.cc
@@ -284,7 +284,7 @@ class AudioInputRendererHostTest : public testing::Test {
// session id returned.
int Open(const std::string& device_id, const std::string& name) {
int session_id = media_stream_manager_->audio_input_device_manager()->Open(
- StreamDeviceInfo(MEDIA_DEVICE_AUDIO_CAPTURE, name, device_id));
+ MediaStreamDevice(MEDIA_DEVICE_AUDIO_CAPTURE, device_id, name));
base::RunLoop().RunUntilIdle();
return session_id;
}

Powered by Google App Engine
This is Rietveld 408576698