| Index: webrtc/p2p/base/transportchannel.cc
|
| diff --git a/webrtc/p2p/base/transportchannel.cc b/webrtc/p2p/base/transportchannel.cc
|
| index a4e8cb8df51f41a83755c8601a3f60fc294bf66d..1170a91a543feb8d8c0ece4d8e631bf9afc668d8 100644
|
| --- a/webrtc/p2p/base/transportchannel.cc
|
| +++ b/webrtc/p2p/base/transportchannel.cc
|
| @@ -31,6 +31,14 @@ void TransportChannel::set_readable(bool readable) {
|
| }
|
| }
|
|
|
| +void TransportChannel::set_flaky(bool flaky) {
|
| + if (flaky_ == flaky) {
|
| + return;
|
| + }
|
| + flaky_ = flaky;
|
| + SignalFlakyState(this);
|
| +}
|
| +
|
| void TransportChannel::set_writable(bool writable) {
|
| if (writable_ != writable) {
|
| LOG_J(LS_VERBOSE, this) << "set_writable from:" << writable_ << " to "
|
|
|