diff options
Diffstat (limited to 'content/browser/plugin_service_impl.h')
-rw-r--r-- | content/browser/plugin_service_impl.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/content/browser/plugin_service_impl.h b/content/browser/plugin_service_impl.h index b3fcbf9..bc8f112 100644 --- a/content/browser/plugin_service_impl.h +++ b/content/browser/plugin_service_impl.h @@ -18,7 +18,6 @@ #include "base/memory/scoped_vector.h" #include "base/memory/singleton.h" #include "base/synchronization/waitable_event_watcher.h" -#include "base/threading/sequenced_worker_pool.h" #include "base/time.h" #include "build/build_config.h" #include "content/browser/plugin_process_host.h" @@ -178,11 +177,9 @@ class CONTENT_EXPORT PluginServiceImpl void RegisterPepperPlugins(); -#if defined(OS_WIN) - // Run on the blocking pool to load the plugins synchronously. + // Function that is run on the FILE thread to load the plugins synchronously. void GetPluginsInternal(base::MessageLoopProxy* target_loop, const GetPluginsCallback& callback); -#endif // Binding directly to GetAllowedPluginForOpenChannelToPlugin() isn't possible // because more arity is needed <http://crbug.com/98542>. This just forwards. @@ -243,10 +240,6 @@ class CONTENT_EXPORT PluginServiceImpl std::set<PluginProcessHost::Client*> pending_plugin_clients_; -#if defined(OS_WIN) - // Used to sequentialize loading plug-ins from disk. - base::SequencedWorkerPool::SequenceToken plugin_list_token_; -#endif #if defined(OS_POSIX) scoped_refptr<PluginLoaderPosix> plugin_loader_; #endif |