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

Unified Diff: content/common/media/media_stream_options.cc

Issue 2420903002: Bug Fix: Initialize |disable_local_echo| (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/media/media_stream_options.cc
diff --git a/content/common/media/media_stream_options.cc b/content/common/media/media_stream_options.cc
index 876a0d1f50c2bec06b7e9736f2a6ede27c595046..2a4c166ff5c9b549daedfb7884c99b9b1d9e1efc 100644
--- a/content/common/media/media_stream_options.cc
+++ b/content/common/media/media_stream_options.cc
@@ -24,10 +24,16 @@ TrackControls::TrackControls(const TrackControls& other) = default;
TrackControls::~TrackControls() {}
StreamControls::StreamControls()
- : audio(false), video(false), hotword_enabled(false) {}
+ : audio(false),
+ video(false),
+ hotword_enabled(false),
+ disable_local_echo(false) {}
StreamControls::StreamControls(bool request_audio, bool request_video)
- : audio(request_audio), video(request_video), hotword_enabled(false) {}
+ : audio(request_audio),
+ video(request_video),
+ hotword_enabled(false),
+ disable_local_echo(false) {}
StreamControls::~StreamControls() {}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698