Chromium Code Reviews| Index: webrtc/p2p/base/dtlstransportchannel_unittest.cc |
| diff --git a/webrtc/p2p/base/dtlstransportchannel_unittest.cc b/webrtc/p2p/base/dtlstransportchannel_unittest.cc |
| index 34aa651af7ee6c69e2fe910bede4db874a6ba728..26b67dbf0cf0b7c1bca40e3f4027f211142e1111 100644 |
| --- a/webrtc/p2p/base/dtlstransportchannel_unittest.cc |
| +++ b/webrtc/p2p/base/dtlstransportchannel_unittest.cc |
| @@ -199,7 +199,7 @@ class DtlsTestClient : public sigslot::has_slots<> { |
| return true; |
| } |
| - bool writable() const { return transport_->writable(); } |
| + bool writable() const { return transport_->any_channels_writable(); } |
|
pthatcher1
2015/09/18 17:56:54
Shouldn't this be all_channels_writable()?
And
honghaiz3
2015/09/18 21:39:30
I tried to removed it.
But to be safe, I revert i
|
| void CheckRole(rtc::SSLRole role) { |
| if (role == rtc::SSL_CLIENT) { |