Index: content/public/common/media_stream_request.h |
diff --git a/content/public/common/media_stream_request.h b/content/public/common/media_stream_request.h |
index 26b2bf1121b1e8d2187299305663f7876fc0047a..55171ab9489b3ffccaf6121e32799514e34985a0 100644 |
--- a/content/public/common/media_stream_request.h |
+++ b/content/public/common/media_stream_request.h |
@@ -94,18 +94,22 @@ CONTENT_EXPORT bool IsScreenCaptureMediaType(MediaStreamType type); |
struct CONTENT_EXPORT MediaStreamDevice { |
MediaStreamDevice(); |
- MediaStreamDevice( |
- MediaStreamType type, |
- const std::string& id, |
- const std::string& name); |
- |
- MediaStreamDevice( |
- MediaStreamType type, |
- const std::string& id, |
- const std::string& name, |
- int sample_rate, |
- int channel_layout, |
- int frames_per_buffer); |
+ MediaStreamDevice(MediaStreamType type, |
+ const std::string& id, |
+ const std::string& name); |
+ |
+ MediaStreamDevice(MediaStreamType type, |
+ const std::string& id, |
+ const std::string& name, |
+ const std::string& group_id); |
+ |
+ MediaStreamDevice(MediaStreamType type, |
+ const std::string& id, |
+ const std::string& name, |
+ const std::string& group_id, |
+ int sample_rate, |
+ int channel_layout, |
+ int frames_per_buffer); |
MediaStreamDevice(const MediaStreamDevice& other); |