diff options
author | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-05 21:39:43 +0000 |
---|---|---|
committer | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-05 21:39:43 +0000 |
commit | b2f1f6b37ac6246ed551717a9e686bf94ab20e03 (patch) | |
tree | 262aa49b9fd1431d219570cbd45c0f4411789d24 /content/ppapi_plugin/ppapi_thread.cc | |
parent | 1d3d04b2b15baa3f387736a16148fc5d139c4a43 (diff) | |
download | chromium_src-b2f1f6b37ac6246ed551717a9e686bf94ab20e03.zip chromium_src-b2f1f6b37ac6246ed551717a9e686bf94ab20e03.tar.gz chromium_src-b2f1f6b37ac6246ed551717a9e686bf94ab20e03.tar.bz2 |
PPAPI: Delete SandboxSupport prior to blink::shutdown()
See the bug for details.
BUG=312965
R=brettw@chromium.org, teravest@chromium.org
Review URL: https://codereview.chromium.org/104713005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239036 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/ppapi_plugin/ppapi_thread.cc')
-rw-r--r-- | content/ppapi_plugin/ppapi_thread.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/content/ppapi_plugin/ppapi_thread.cc b/content/ppapi_plugin/ppapi_thread.cc index f183ae3..a29a639 100644 --- a/content/ppapi_plugin/ppapi_thread.cc +++ b/content/ppapi_plugin/ppapi_thread.cc @@ -112,6 +112,7 @@ void PpapiThread::Shutdown() { ppapi::proxy::PluginGlobals::Get()->set_plugin_proxy_delegate(NULL); if (plugin_entry_points_.shutdown_module) plugin_entry_points_.shutdown_module(); + webkit_platform_support_->Shutdown(); blink::shutdown(); } |