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

Unified Diff: components/tracing/child_memory_dump_manager_delegate_impl.cc

Issue 1142063003: content/child: Remove use of MessageLoopProxy and deprecated MessageLoop APIs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Build fix. Created 5 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: components/tracing/child_memory_dump_manager_delegate_impl.cc
diff --git a/components/tracing/child_memory_dump_manager_delegate_impl.cc b/components/tracing/child_memory_dump_manager_delegate_impl.cc
index f8048d96716974ce761c6e75ab9ed6ff9ee120de..4e2cc9f318dd138846f3e24d5300f10118da1e38 100644
--- a/components/tracing/child_memory_dump_manager_delegate_impl.cc
+++ b/components/tracing/child_memory_dump_manager_delegate_impl.cc
@@ -31,7 +31,7 @@ void ChildMemoryDumpManagerDelegateImpl::SetChildTraceMessageFilter(
// replacing a valid instance with another one (should never happen).
DCHECK(ctmf_ == nullptr || (ctmf == nullptr && ctmf_task_runner_ != nullptr));
ctmf_ = ctmf;
- ctmf_task_runner_ = ctmf ? (ctmf->ipc_message_loop()) : nullptr;
+ ctmf_task_runner_ = ctmf ? (ctmf->ipc_task_runner()) : nullptr;
}
// Invoked in child processes by the MemoryDumpManager.
« no previous file with comments | « components/printing/test/print_mock_render_thread.cc ('k') | components/tracing/child_trace_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698