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

Unified Diff: net/nqe/network_quality_estimator.h

Issue 2461833002: NQE: Store the current network quality in a single variable (Closed)
Patch Set: ryansturm nit Created 4 years, 1 month 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 | « no previous file | net/nqe/network_quality_estimator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/nqe/network_quality_estimator.h
diff --git a/net/nqe/network_quality_estimator.h b/net/nqe/network_quality_estimator.h
index cb2ec31e6fed82cea8d8d760ebb06705a3a17d20..ac1e36f8373874676d12fb2291aa6cedf9743201 100644
--- a/net/nqe/network_quality_estimator.h
+++ b/net/nqe/network_quality_estimator.h
@@ -691,11 +691,8 @@ class NET_EXPORT NetworkQualityEstimator
size_t rtt_observations_size_at_last_ect_computation_;
size_t throughput_observations_size_at_last_ect_computation_;
- // Current estimates of the HTTP RTT, transport RTT and downstream throughput
- // (in kilobits per second).
- base::TimeDelta http_rtt_;
- base::TimeDelta transport_rtt_;
- int32_t downstream_throughput_kbps_;
+ // Current estimates of the network quality.
bengr 2016/11/03 15:36:48 estimates -> estimate?
tbansal1 2016/11/07 17:28:19 Done.
+ nqe::internal::NetworkQuality network_quality_;
// Current effective connection type. It is updated on connection change
// events. It is also updated every time there is network traffic (provided
« no previous file with comments | « no previous file | net/nqe/network_quality_estimator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698