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

Unified Diff: components/offline_pages/core/background/network_quality_provider_stub.h

Issue 2717153002: NQE: Plumb RTT and throughput estimates to the UI thread (Closed)
Patch Set: Rebase, Fix more compilation errors Created 3 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
Index: components/offline_pages/core/background/network_quality_provider_stub.h
diff --git a/components/offline_pages/core/background/network_quality_provider_stub.h b/components/offline_pages/core/background/network_quality_provider_stub.h
index 1c13a17b3ea29cdf69200f569f41a8e88db5cef9..525e1141f391787b4b8e098dc742c834cbebd298 100644
--- a/components/offline_pages/core/background/network_quality_provider_stub.h
+++ b/components/offline_pages/core/background/network_quality_provider_stub.h
@@ -35,6 +35,14 @@ class NetworkQualityProviderStub
net::NetworkQualityEstimator::EffectiveConnectionTypeObserver* observer)
override;
+ void AddRTTAndThroughputEstimatesObserver(
+ net::NetworkQualityEstimator::RTTAndThroughputEstimatesObserver* observer)
+ override;
+
+ void RemoveRTTAndThroughputEstimatesObserver(
+ net::NetworkQualityEstimator::RTTAndThroughputEstimatesObserver* observer)
+ override;
+
void SetEffectiveConnectionTypeForTest(net::EffectiveConnectionType type) {
connection_type_ = type;
}

Powered by Google App Engine
This is Rietveld 408576698