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

Unified Diff: content/browser/plugin_service_impl.h

Issue 1159623009: content: Remove use of MessageLoopProxy and deprecated MessageLoop APIs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Test build fix. Created 5 years, 6 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/browser/plugin_loader_posix.cc ('k') | content/browser/plugin_service_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/plugin_service_impl.h
diff --git a/content/browser/plugin_service_impl.h b/content/browser/plugin_service_impl.h
index 2e107a6d40a6791d328e9806e713135f6fecd036..19fefba66415ddb996a0b5a299deea107c6a104d 100644
--- a/content/browser/plugin_service_impl.h
+++ b/content/browser/plugin_service_impl.h
@@ -42,7 +42,7 @@
#endif
namespace base {
-class MessageLoopProxy;
+class SingleThreadTaskRunner;
}
namespace content {
@@ -181,13 +181,12 @@ class CONTENT_EXPORT PluginServiceImpl
void RegisterPepperPlugins();
// Run on the blocking pool to load the plugins synchronously.
- void GetPluginsInternal(base::MessageLoopProxy* target_loop,
+ void GetPluginsInternal(base::SingleThreadTaskRunner* target_task_runner,
const GetPluginsCallback& callback);
#if defined(OS_POSIX)
- void GetPluginsOnIOThread(
- base::MessageLoopProxy* target_loop,
- const GetPluginsCallback& callback);
+ void GetPluginsOnIOThread(base::SingleThreadTaskRunner* target_task_runner,
+ const GetPluginsCallback& callback);
#endif
// Binding directly to GetAllowedPluginForOpenChannelToPlugin() isn't possible
« no previous file with comments | « content/browser/plugin_loader_posix.cc ('k') | content/browser/plugin_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698