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

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

Issue 11783059: Ensures that WebRTC works for device selection using a different sample rate than default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix after review from Chris Created 7 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
Index: content/browser/renderer_host/media/media_stream_ui_controller_unittest.cc
diff --git a/content/browser/renderer_host/media/media_stream_ui_controller_unittest.cc b/content/browser/renderer_host/media/media_stream_ui_controller_unittest.cc
index b13d8f83fe0129e5abef65e57beb566271c4e2b9..799752a8733c9458000d6279cdc4ab606c9cd3c0 100644
--- a/content/browser/renderer_host/media/media_stream_ui_controller_unittest.cc
+++ b/content/browser/renderer_host/media/media_stream_ui_controller_unittest.cc
@@ -31,7 +31,9 @@ class MediaStreamDeviceUIControllerTest
void GetAvailableDevices(MediaStreamDevices* devices) OVERRIDE {
devices->push_back(MediaStreamDevice(MEDIA_DEVICE_AUDIO_CAPTURE,
"mic",
- "mic_id"));
+ "mic_id",
+ 0,
+ 0));
devices->push_back(MediaStreamDevice(MEDIA_DEVICE_VIDEO_CAPTURE,
"camera",
"camera_id"));
« no previous file with comments | « content/browser/renderer_host/media/media_stream_ui_controller.cc ('k') | content/common/media/media_stream_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698