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

Unified Diff: content/child/child_process.h

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
« no previous file with comments | « content/child/child_histogram_message_filter.cc ('k') | content/child/child_thread_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/child_process.h
diff --git a/content/child/child_process.h b/content/child/child_process.h
index cf3173f7132c4ee64b7b242bd059c4ac6b0798f4..32d5638b099865b80106cd019b2879a1ca7dc83c 100644
--- a/content/child/child_process.h
+++ b/content/child/child_process.h
@@ -43,8 +43,8 @@ class CONTENT_EXPORT ChildProcess {
void set_main_thread(ChildThreadImpl* thread);
base::MessageLoop* io_message_loop() { return io_thread_.message_loop(); }
- base::MessageLoopProxy* io_message_loop_proxy() {
- return io_thread_.message_loop_proxy().get();
+ base::SingleThreadTaskRunner* io_task_runner() {
+ return io_thread_.task_runner().get();
}
// A global event object that is signalled when the main thread's message
« no previous file with comments | « content/child/child_histogram_message_filter.cc ('k') | content/child/child_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698