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

Unified Diff: remoting/host/win/rdp_client_window.cc

Issue 1867213002: Support audio in curtain mode, and use endpoint volume instead of session volume to adjust audio st… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolve review comments Created 4 years, 8 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 | « remoting/host/audio_capturer_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/win/rdp_client_window.cc
diff --git a/remoting/host/win/rdp_client_window.cc b/remoting/host/win/rdp_client_window.cc
index 0f605cd1c67becccde600d49c7185373a669613b..098ec1098b0453a7468ffc0533751e0610356a56 100644
--- a/remoting/host/win/rdp_client_window.cc
+++ b/remoting/host/win/rdp_client_window.cc
@@ -339,12 +339,10 @@ LRESULT RdpClientWindow::OnCreate(CREATESTRUCT* create_struct) {
if (FAILED(result))
return LogOnCreateError(result);
- // Disable audio in the session.
- // TODO(alexeypa): re-enable audio redirection when http://crbug.com/242312 is
- // fixed.
result = client_->get_SecuredSettings2(secured_settings2.Receive());
if (SUCCEEDED(result)) {
- result = secured_settings2->put_AudioRedirectionMode(kRdpAudioModeNone);
+ result =
+ secured_settings2->put_AudioRedirectionMode(kRdpAudioModeRedirect);
if (FAILED(result))
return LogOnCreateError(result);
}
« no previous file with comments | « remoting/host/audio_capturer_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698