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

Unified Diff: webrtc/p2p/base/port.h

Issue 2041593002: Revert "Revert of Update the BWE when the network route changes. (patchset #5 id:180001 of https://… (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Mark a route as disconnect if it is not ready to send media Created 4 years, 6 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/port.h
diff --git a/webrtc/p2p/base/port.h b/webrtc/p2p/base/port.h
index 06efd2d3c235c4e976fda6f610c187741ac7542f..40ac22035708578de022a322b23a55f810205c6a 100644
--- a/webrtc/p2p/base/port.h
+++ b/webrtc/p2p/base/port.h
@@ -484,6 +484,11 @@ class Connection : public CandidatePairInterface,
// Error if Send() returns < 0
virtual int GetError() = 0;
+ virtual bool ReadyToSendMedia() const {
pthatcher1 2016/06/08 18:26:39 Why not just connected()?
honghaiz3 2016/06/08 18:36:42 connected() has already been used in the class.
pthatcher1 2016/06/08 18:46:58 Ah, now you make me realize that this is almost th
honghaiz3 2016/06/09 16:37:34 See my reply in the email (and the post of this ch
+ return write_state_ == STATE_WRITABLE ||
+ write_state_ == STATE_WRITE_UNRELIABLE;
+ }
+
sigslot::signal4<Connection*, const char*, size_t, const rtc::PacketTime&>
SignalReadPacket;

Powered by Google App Engine
This is Rietveld 408576698