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

Unified Diff: net/nqe/network_quality_provider.cc

Issue 2927453002: Make NQE a derived class of NetworkQualityProvider (Closed)
Patch Set: Fix tests Created 3 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: net/nqe/network_quality_provider.cc
diff --git a/net/nqe/network_quality_provider.cc b/net/nqe/network_quality_provider.cc
new file mode 100644
index 0000000000000000000000000000000000000000..030e0d8a7dc8d310303d0b2fc59eaef218dd216c
--- /dev/null
+++ b/net/nqe/network_quality_provider.cc
@@ -0,0 +1,23 @@
+// Copyright 2017 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.
+
+#include "net/nqe/network_quality_provider.h"
+
+namespace net {
+
+base::Optional<base::TimeDelta> NetworkQualityProvider::GetHttpRTT() const {
+ return base::Optional<base::TimeDelta>();
+}
+
+base::Optional<base::TimeDelta> NetworkQualityProvider::GetTransportRTT()
+ const {
+ return base::Optional<base::TimeDelta>();
+}
+
+base::Optional<int32_t> NetworkQualityProvider::GetDownstreamThroughputKbps()
+ const {
+ return base::Optional<int32_t>();
+}
+
+} // namespace net

Powered by Google App Engine
This is Rietveld 408576698