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

Unified Diff: chrome/browser/profiles/profile_impl_io_data.cc

Issue 375083002: Break out the IO thread aspects of HttpServerPropertiesManager into a new ChromeHttpServerPropertie… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | « chrome/browser/net/http_server_properties_manager_unittest.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/profile_impl_io_data.cc
diff --git a/chrome/browser/profiles/profile_impl_io_data.cc b/chrome/browser/profiles/profile_impl_io_data.cc
index b9db4d75b2c8d84c8a836f3a665055e5f63d1d95..f21c1e6565f8ffabc18b324fd7e476da615b89c6 100644
--- a/chrome/browser/profiles/profile_impl_io_data.cc
+++ b/chrome/browser/profiles/profile_impl_io_data.cc
@@ -323,7 +323,7 @@ void ProfileImplIOData::Handle::LazyInitialize() const {
new chrome_browser_net::HttpServerPropertiesManager(pref_service);
io_data_->set_http_server_properties(
scoped_ptr<net::HttpServerProperties>(
- io_data_->http_server_properties_manager_));
+ io_data_->http_server_properties_manager_->http_server_properties()));
io_data_->session_startup_pref()->Init(
prefs::kRestoreOnStartup, pref_service);
io_data_->session_startup_pref()->MoveToThread(
@@ -771,5 +771,6 @@ void ProfileImplIOData::ClearNetworkingHistorySinceOnIOThread(
// Completes synchronously.
transport_security_state()->DeleteAllDynamicDataSince(time);
DCHECK(http_server_properties_manager_);
- http_server_properties_manager_->Clear(completion);
+ // XXX: fix me
+ //http_server_properties_manager_->Clear(completion);
}
« no previous file with comments | « chrome/browser/net/http_server_properties_manager_unittest.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698