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

Unified Diff: net/nqe/network_quality.h

Issue 1942893002: Split NQE to multiple files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 7 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 | « net/nqe/cached_network_quality.cc ('k') | net/nqe/network_quality.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/nqe/network_quality.h
diff --git a/net/nqe/network_quality.h b/net/nqe/network_quality.h
new file mode 100644
index 0000000000000000000000000000000000000000..1679beccea04978cfb70b7e2467729c964a8295e
--- /dev/null
+++ b/net/nqe/network_quality.h
@@ -0,0 +1,67 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef NET_NQE_NETWORK_QUALITY_H_
+#define NET_NQE_NETWORK_QUALITY_H_
+
+#include <stdint.h>
+
+#include "base/gtest_prod_util.h"
+#include "base/macros.h"
+#include "base/time/time.h"
+#include "net/base/net_export.h"
+
+namespace net {
+
+namespace nqe {
+
+namespace internal {
+
+// Returns the RTT value to be used when the valid RTT is unavailable. Readers
+// should discard RTT if it is set to the value returned by |InvalidRTT()|.
+NET_EXPORT_PRIVATE base::TimeDelta InvalidRTT();
+
+// Throughput is set to |kInvalidThroughput| if a valid value is
+// unavailable. Readers should discard throughput value if it is set to
+// |kInvalidThroughput|.
+const int32_t kInvalidThroughput = 0;
+
+// NetworkQuality is used to cache the quality of a network connection.
+class NET_EXPORT_PRIVATE NetworkQuality {
+ public:
+ NetworkQuality();
+ // |rtt| is the estimate of the round trip time.
+ // |downstream_throughput_kbps| is the estimate of the downstream
+ // throughput in kilobits per second.
+ NetworkQuality(const base::TimeDelta& rtt,
+ int32_t downstream_throughput_kbps);
+ NetworkQuality(const NetworkQuality& other);
+ ~NetworkQuality();
+
+ NetworkQuality& operator=(const NetworkQuality& other);
+
+ // Returns the estimate of the round trip time at the HTTP layer.
+ const base::TimeDelta& rtt() const { return rtt_; }
+
+ // Returns the estimate of the downstream throughput in Kbps (Kilobits per
+ // second).
+ int32_t downstream_throughput_kbps() const {
+ return downstream_throughput_kbps_;
+ }
+
+ private:
+ // Estimated round trip time at the HTTP layer.
+ base::TimeDelta rtt_;
+
+ // Estimated downstream throughput in kilobits per second.
+ int32_t downstream_throughput_kbps_;
+};
+
+} // namespace internal
+
+} // namespace nqe
+
+} // namespace net
+
+#endif // NET_NQE_NETWORK_QUALITY_H_
« no previous file with comments | « net/nqe/cached_network_quality.cc ('k') | net/nqe/network_quality.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698