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

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

Issue 2487133003: Remove dead code related to media device enumerations and monitoring. (Closed)
Patch Set: rebase Created 4 years, 1 month 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_device_manager_unittest.cc
diff --git a/content/browser/renderer_host/media/audio_input_device_manager_unittest.cc b/content/browser/renderer_host/media/audio_input_device_manager_unittest.cc
index c3aeef1561ce35c5634289eae3f01aefcec4ee0b..e31b3a7f493c5f2d777d20b10acf0ff3927f062b 100644
--- a/content/browser/renderer_host/media/audio_input_device_manager_unittest.cc
+++ b/content/browser/renderer_host/media/audio_input_device_manager_unittest.cc
@@ -176,10 +176,9 @@ TEST_F(MAYBE_AudioInputDeviceManagerTest, OpenNotExistingDevice) {
MediaStreamType stream_type = MEDIA_DEVICE_AUDIO_CAPTURE;
std::string device_name("device_doesnt_exist");
std::string device_id("id_doesnt_exist");
- std::string group_id("group_doesnt_exist");
int sample_rate(0);
int channel_config(0);
- StreamDeviceInfo dummy_device(stream_type, device_name, device_id, group_id,
+ StreamDeviceInfo dummy_device(stream_type, device_name, device_id,
sample_rate, channel_config, 2048);
int session_id = manager_->Open(dummy_device);

Powered by Google App Engine
This is Rietveld 408576698