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

Unified Diff: webrtc/p2p/base/dtlstransportchannel_unittest.cc

Issue 1351673003: Replace readable with receiving where receiving means receiving anything (stun ping, response or da… (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 5 years, 3 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
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) {

Powered by Google App Engine
This is Rietveld 408576698