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

Unified Diff: chrome/browser/metrics/network_quality_estimator_provider_impl.cc

Issue 2605553002: Add EffectiveConnectionType enum to the system profile proto (Closed)
Patch Set: asvitkine comments Created 3 years, 11 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: chrome/browser/metrics/network_quality_estimator_provider_impl.cc
diff --git a/chrome/browser/metrics/network_quality_estimator_provider_impl.cc b/chrome/browser/metrics/network_quality_estimator_provider_impl.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c6b5bd22ce435c448d408ff0b0498ade8d57046e
--- /dev/null
+++ b/chrome/browser/metrics/network_quality_estimator_provider_impl.cc
@@ -0,0 +1,42 @@
+// 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 "chrome/browser/metrics/network_quality_estimator_provider_impl.h"
+
+#include "chrome/browser/io_thread.h"
+#include "content/public/browser/browser_thread.h"
+
+namespace net {
+class NetworkQualityEstimator;
+}
+
+namespace metrics {
+
+NetworkQualityEstimatorProviderImpl::NetworkQualityEstimatorProviderImpl(
+ IOThread* io_thread)
+ : io_thread_(io_thread) {
+ DCHECK(io_thread_);
+}
+
+NetworkQualityEstimatorProviderImpl::~NetworkQualityEstimatorProviderImpl() {
+ DCHECK(thread_checker_.CalledOnValidThread());
+}
+
+scoped_refptr<base::SequencedTaskRunner>
+NetworkQualityEstimatorProviderImpl::GetTaskRunner() {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ // |this| is constructed on UI thread, but must be used on the IO thread.
+ thread_checker_.DetachFromThread();
+ return content::BrowserThread::GetTaskRunnerForThread(
+ content::BrowserThread::IO);
+}
+
+void NetworkQualityEstimatorProviderImpl::ProvideEstimator(
+ const base::Callback<void(net::NetworkQualityEstimator*)>& callback) {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO));
+ callback.Run(io_thread_->globals()->network_quality_estimator.get());
+}
+
+} // namespace metrics

Powered by Google App Engine
This is Rietveld 408576698