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

Unified Diff: 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: chrome/browser/net/http_server_properties_manager_factory.cc
diff --git a/chrome/browser/net/http_server_properties_manager_factory.cc b/chrome/browser/net/http_server_properties_manager_factory.cc
index 589f379b8a3cab4606220960304429c63d3f77fb..f9dd378c11eb0e9326a27c78053738ede329459e 100644
--- a/chrome/browser/net/http_server_properties_manager_factory.cc
+++ b/chrome/browser/net/http_server_properties_manager_factory.cc
@@ -60,12 +60,13 @@ namespace chrome_browser_net {
/* static */
net::HttpServerPropertiesManager*
-HttpServerPropertiesManagerFactory::CreateManager(PrefService* pref_service) {
+HttpServerPropertiesManagerFactory::CreateManager(PrefService* pref_service,
+ net::NetLog* net_log) {
using content::BrowserThread;
return new net::HttpServerPropertiesManager(
new PrefServiceAdapter(pref_service), // Transfers ownership.
base::ThreadTaskRunnerHandle::Get(),
- BrowserThread::GetTaskRunnerForThread(BrowserThread::IO));
+ BrowserThread::GetTaskRunnerForThread(BrowserThread::IO), net_log);
}
/* static */
« no previous file with comments | « chrome/browser/net/http_server_properties_manager_factory.h ('k') | chrome/browser/profiles/profile_impl_io_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698