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

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

Issue 2323913007: Add constructor taking group ID to MediaStreamDevice and StreamDeviceInfo (Closed)
Patch Set: Fix constructor Created 4 years, 3 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_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 4d886817c2cf883558070c6063fa87090f213b98..d4d0f1c32a9c1de9513f08d614104ac38df2b6e2 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
@@ -178,10 +178,11 @@ 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, sample_rate, channel_config, 2048);
+ StreamDeviceInfo dummy_device(stream_type, device_name, device_id, group_id,
+ sample_rate, channel_config, 2048);
int session_id = manager_->Open(dummy_device);
EXPECT_CALL(*audio_input_listener_,

Powered by Google App Engine
This is Rietveld 408576698