| 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);
|
| }
|
|
|