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

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

Issue 1762863002: Renaming variables in p2ptransportchannel to be consistent. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix comments Created 4 years, 9 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
« no previous file with comments | « webrtc/p2p/base/faketransportcontroller.h ('k') | webrtc/p2p/base/p2ptransportchannel.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/p2p/base/p2ptransportchannel.h
diff --git a/webrtc/p2p/base/p2ptransportchannel.h b/webrtc/p2p/base/p2ptransportchannel.h
index eac405d9166c51f09205885e7ab9ae9e3a65067b..3ca25d4cba1425bd5a379c7c5f8b10e964e23e51 100644
--- a/webrtc/p2p/base/p2ptransportchannel.h
+++ b/webrtc/p2p/base/p2ptransportchannel.h
@@ -34,7 +34,7 @@
namespace cricket {
-extern const uint32_t WEAK_PING_DELAY;
+extern const int WEAK_PING_INTERVAL;
struct IceParameters {
std::string ufrag;
@@ -92,8 +92,10 @@ class P2PTransportChannel : public TransportChannelImpl,
return gathering_state_;
}
void AddRemoteCandidate(const Candidate& candidate) override;
- // Sets the receiving timeout and gather_continually.
- // This also sets the check_receiving_delay proportionally.
+ // Sets the parameters in IceConfig. We do not set them blindly. Instead, we
+ // only update the parameter if it is considered set in |config|. For example,
+ // a negative value of receiving_timeout will be considered "not set" and we
+ // will not use it to update the respective parameter in |config_|.
void SetIceConfig(const IceConfig& config) override;
const IceConfig& config() const;
@@ -166,8 +168,8 @@ class P2PTransportChannel : public TransportChannelImpl,
return false;
}
- int receiving_timeout() const { return config_.receiving_timeout_ms; }
- int check_receiving_delay() const { return check_receiving_delay_; }
+ int receiving_timeout() const { return config_.receiving_timeout; }
+ int check_receiving_interval() const { return check_receiving_interval_; }
// Helper method used only in unittest.
rtc::DiffServCodePoint DefaultDscpValue() const;
@@ -317,9 +319,9 @@ class P2PTransportChannel : public TransportChannelImpl,
uint64_t tiebreaker_;
IceGatheringState gathering_state_;
- int check_receiving_delay_;
+ int check_receiving_interval_;
uint32_t last_ping_sent_ms_ = 0;
- int weak_ping_delay_ = WEAK_PING_DELAY;
+ int weak_ping_interval_ = WEAK_PING_INTERVAL;
TransportChannelState state_ = TransportChannelState::STATE_INIT;
IceConfig config_;
« no previous file with comments | « webrtc/p2p/base/faketransportcontroller.h ('k') | webrtc/p2p/base/p2ptransportchannel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698