Index: remoting/protocol/pepper_stream_channel.cc |
diff --git a/remoting/protocol/pepper_stream_channel.cc b/remoting/protocol/pepper_stream_channel.cc |
index e6b07d8f023d105d29d33da1cb61f848a996cc6e..1508ca3dd2bbea39234391b1893ad2851789fff7 100644 |
--- a/remoting/protocol/pepper_stream_channel.cc |
+++ b/remoting/protocol/pepper_stream_channel.cc |
@@ -143,6 +143,11 @@ void PepperStreamChannel::Connect(pp::Instance* pp_instance, |
} |
} |
+ if (transport->SetProperty(PP_TRANSPORTPROPERTY_DISABLE_TCP_TRANSPORT, |
+ pp::Var(true)) != PP_OK) { |
+ LOG(ERROR) << "Failed to set DISABLE_TCP_TRANSPORT flag."; |
+ } |
+ |
channel_ = new PepperTransportSocketAdapter(transport, name_, this); |
owned_channel_.reset(channel_); |