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

Unified Diff: content/public/browser/network_quality_observer_factory.h

Issue 2927453002: Make NQE a derived class of NetworkQualityProvider (Closed)
Patch Set: some more IWYU fixes 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
« no previous file with comments | « content/browser/net/network_quality_observer_impl.cc ('k') | net/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/network_quality_observer_factory.h
diff --git a/content/public/browser/network_quality_observer_factory.h b/content/public/browser/network_quality_observer_factory.h
index b6102a0ba28edc5f0ad34bfaebe35a9acded93f3..f0ae95b8059f0e07afb3c1e4027bba9e54ea6943 100644
--- a/content/public/browser/network_quality_observer_factory.h
+++ b/content/public/browser/network_quality_observer_factory.h
@@ -12,14 +12,17 @@
#include "content/public/browser/notification_service.h"
#include "content/public/browser/notification_types.h"
#include "content/public/browser/render_process_host.h"
-#include "net/nqe/network_quality_estimator.h"
+#include "net/nqe/rtt_throughput_estimates_observer.h"
+
+namespace net {
+class NetworkQualityEstimator;
+}
namespace content {
// Creates network quality observer that listens for changes to the network
// quality and manages sending updates to each RenderProcess.
-CONTENT_EXPORT std::unique_ptr<
- net::NetworkQualityEstimator::RTTAndThroughputEstimatesObserver>
+CONTENT_EXPORT std::unique_ptr<net::RTTAndThroughputEstimatesObserver>
CreateNetworkQualityObserver(
net::NetworkQualityEstimator* network_quality_estimator);
« no previous file with comments | « content/browser/net/network_quality_observer_impl.cc ('k') | net/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698