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

Unified Diff: ios/chrome/browser/net/http_server_properties_manager_factory.cc

Issue 2944043002: Add NetLog events for HttpServerPropertiesManager (Closed)
Patch Set: address droger comment 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: ios/chrome/browser/net/http_server_properties_manager_factory.cc
diff --git a/ios/chrome/browser/net/http_server_properties_manager_factory.cc b/ios/chrome/browser/net/http_server_properties_manager_factory.cc
index 955ceed32e246797855a1766b41859f9244fa46a..0180eab5c2907cc9241f9e3ec7cc9a2117474650 100644
--- a/ios/chrome/browser/net/http_server_properties_manager_factory.cc
+++ b/ios/chrome/browser/net/http_server_properties_manager_factory.cc
@@ -55,11 +55,12 @@ class PrefServiceAdapter
// static
net::HttpServerPropertiesManager*
-HttpServerPropertiesManagerFactory::CreateManager(PrefService* pref_service) {
+HttpServerPropertiesManagerFactory::CreateManager(PrefService* pref_service,
+ net::NetLog* net_log) {
return new net::HttpServerPropertiesManager(
new PrefServiceAdapter(pref_service), // Transfers ownership.
base::ThreadTaskRunnerHandle::Get(),
- web::WebThread::GetTaskRunnerForThread(web::WebThread::IO));
+ web::WebThread::GetTaskRunnerForThread(web::WebThread::IO), net_log);
}
// static
« no previous file with comments | « ios/chrome/browser/net/http_server_properties_manager_factory.h ('k') | net/http/http_server_properties_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698