OLD | NEW |
---|---|
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef NET_BASE_NETWORK_QUALITY_H_ | 5 #ifndef NET_BASE_NETWORK_QUALITY_H_ |
6 #define NET_BASE_NETWORK_QUALITY_H_ | 6 #define NET_BASE_NETWORK_QUALITY_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "base/time/time.h" | 10 #include "base/time/time.h" |
11 #include "net/base/net_export.h" | |
11 | 12 |
12 namespace net { | 13 namespace net { |
13 | 14 |
14 // API that is used to report the current network quality as estimated by the | 15 // API that is used to report the current network quality as estimated by the |
15 // NetworkQualityEstimator. | 16 // NetworkQualityEstimator. |
16 struct NET_EXPORT_PRIVATE NetworkQuality { | 17 class NET_EXPORT_PRIVATE NetworkQuality { |
17 NetworkQuality(const base::TimeDelta& fastest_rtt, | 18 public: |
18 double fastest_rtt_confidence, | 19 // |rtt| is the estimate of the round trip time for the current connection. |
19 uint64_t peak_throughput_kbps, | 20 // |downstream_throughput_kbps| is the estimate of the downstram throughput |
20 double peak_throughput_kbps_confidence) | 21 // for the current connection. |
21 : fastest_rtt(fastest_rtt), | 22 NetworkQuality(const base::TimeDelta& rtt, |
22 fastest_rtt_confidence(fastest_rtt_confidence), | 23 int32_t downstream_throughput_kbps); |
23 peak_throughput_kbps(peak_throughput_kbps), | |
24 peak_throughput_kbps_confidence(peak_throughput_kbps_confidence) {} | |
25 | 24 |
26 ~NetworkQuality() {} | 25 ~NetworkQuality(); |
27 | 26 |
28 // The fastest round trip time observed for the current connection. | 27 // Returns the round trip time observed for the current connection. |
bengr
2015/06/09 20:46:33
You could add the clause "for the current connecti
tbansal1
2015/06/10 01:00:05
Actually, there is nothing that says NetworkQualit
| |
29 const base::TimeDelta fastest_rtt; | 28 base::TimeDelta rtt() const { return rtt_; } |
bengr
2015/06/09 20:46:32
Should this return a const&?
tbansal1
2015/06/10 01:00:05
Done.
| |
30 | 29 |
31 // Confidence of the |fastest_rtt| estimate. Value lies between 0.0 and 1.0 | 30 // Returns the downstream throughput in Kbps observed for the current |
32 // with 0.0 being no confidence and 1.0 implying that estimates are same as | 31 // connection. |
33 // ground truth. | 32 int32_t downstream_throughput_kbps() const { |
34 // TODO(tbansal): Define units so values intermediate between 0.0 and 1.0 are | 33 return downstream_throughput_kbps_; |
35 // meaningful. | 34 } |
36 const double fastest_rtt_confidence; | |
37 | 35 |
38 // Peak throughput in Kbps observed for the current connection. | 36 private: |
39 const uint64_t peak_throughput_kbps; | 37 // The round trip time observed for the current connection. |
38 const base::TimeDelta rtt_; | |
40 | 39 |
41 // Confidence of the |peak_throughput_kbps| estimate. Value lies between 0.0 | 40 // Downstream throughput in Kbps observed for the current connection. |
42 // and 1.0 with 0.0 being no confidence and 1.0 implying that estimates are | 41 const int32_t downstream_throughput_kbps_; |
43 // same as ground truth. | |
44 // TODO(tbansal): Define units so values intermediate between 0.0 and 1.0 are | |
45 // meaningful. | |
46 const double peak_throughput_kbps_confidence; | |
47 }; | 42 }; |
48 | 43 |
49 } // namespace net | 44 } // namespace net |
50 | 45 |
51 #endif // NET_BASE_NETWORK_QUALITY_H_ | 46 #endif // NET_BASE_NETWORK_QUALITY_H_ |
OLD | NEW |