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

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

Issue 2894863002: Rename TaskRunner::RunsTasksOnCurrentThread() in //net (Closed)
Patch Set: fixed build error Created 3 years, 7 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/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 b72ea5c714534d0fe180c81342cc795af6865212..95ceac5e9d797d94c26407d10d087c6a1204e06c 100644
--- a/chrome/browser/profiles/profile_impl_io_data.cc
+++ b/chrome/browser/profiles/profile_impl_io_data.cc
@@ -131,7 +131,7 @@ ProfileImplIOData::Handle::~Handle() {
}
if (io_data_->http_server_properties_manager_)
- io_data_->http_server_properties_manager_->ShutdownOnPrefThread();
+ io_data_->http_server_properties_manager_->ShutdownOnPrefSequence();
// io_data_->data_reduction_proxy_io_data() might be NULL if Init() was
// never called.
@@ -472,7 +472,7 @@ void ProfileImplIOData::InitializeInternal(
ApplyProfileParamsToContext(main_context);
if (lazy_params_->http_server_properties_manager) {
- lazy_params_->http_server_properties_manager->InitializeOnNetworkThread();
+ lazy_params_->http_server_properties_manager->InitializeOnNetworkSequence();
main_context_storage->set_http_server_properties(
std::move(lazy_params_->http_server_properties_manager));
}

Powered by Google App Engine
This is Rietveld 408576698