diff options
author | tzik <tzik@chromium.org> | 2014-09-03 21:58:33 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-09-04 05:00:59 +0000 |
commit | 4ff79fa7b6477808bdff2bb7589da312269d8ec2 (patch) | |
tree | 1075694099fa17bdce3e1acd73634983cdf2e3e5 /content/ppapi_plugin/ppapi_thread.cc | |
parent | 96b5967f6a201fdb0e7cb3782de01915362ecb8a (diff) | |
download | chromium_src-4ff79fa7b6477808bdff2bb7589da312269d8ec2.zip chromium_src-4ff79fa7b6477808bdff2bb7589da312269d8ec2.tar.gz chromium_src-4ff79fa7b6477808bdff2bb7589da312269d8ec2.tar.bz2 |
Call ChildThread::Shutdown in PpapiThread::Shutdown.
BUG=None
Review URL: https://codereview.chromium.org/536783003
Cr-Commit-Position: refs/heads/master@{#293260}
Diffstat (limited to 'content/ppapi_plugin/ppapi_thread.cc')
-rw-r--r-- | content/ppapi_plugin/ppapi_thread.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/content/ppapi_plugin/ppapi_thread.cc b/content/ppapi_plugin/ppapi_thread.cc index 62cf021..0da787a 100644 --- a/content/ppapi_plugin/ppapi_thread.cc +++ b/content/ppapi_plugin/ppapi_thread.cc @@ -125,6 +125,8 @@ PpapiThread::~PpapiThread() { } void PpapiThread::Shutdown() { + ChildThread::Shutdown(); + ppapi::proxy::PluginGlobals::Get()->set_plugin_proxy_delegate(NULL); if (plugin_entry_points_.shutdown_module) plugin_entry_points_.shutdown_module(); |