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

Unified Diff: components/nacl/renderer/pnacl_translation_resource_host.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
Index: components/nacl/renderer/pnacl_translation_resource_host.h
diff --git a/components/nacl/renderer/pnacl_translation_resource_host.h b/components/nacl/renderer/pnacl_translation_resource_host.h
index 2548f1ddd39e133659d01839073bf85b94f8f544..4ddb7c2f31d39bd262e31e7430157c71d95895ab 100644
--- a/components/nacl/renderer/pnacl_translation_resource_host.h
+++ b/components/nacl/renderer/pnacl_translation_resource_host.h
@@ -31,7 +31,7 @@ class PnaclTranslationResourceHost : public IPC::MessageFilter {
RequestNexeFdCallback;
explicit PnaclTranslationResourceHost(
- const scoped_refptr<base::MessageLoopProxy>& io_message_loop);
+ scoped_refptr<base::SingleThreadTaskRunner> io_task_runner);
void RequestNexeFd(int render_view_id,
PP_Instance instance,
const nacl::PnaclCacheInfo& cache_info,
@@ -63,7 +63,7 @@ class PnaclTranslationResourceHost : public IPC::MessageFilter {
IPC::PlatformFileForTransit file);
void CleanupCacheRequests();
- scoped_refptr<base::MessageLoopProxy> io_message_loop_;
+ scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_;
// Should be accessed on the io thread.
IPC::Sender* sender_;
« no previous file with comments | « chrome/renderer/chrome_mock_render_thread.cc ('k') | components/nacl/renderer/pnacl_translation_resource_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698