diff options
Diffstat (limited to 'webkit/glue/plugins/webplugin_delegate_impl_mac.mm')
-rw-r--r-- | webkit/glue/plugins/webplugin_delegate_impl_mac.mm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/webkit/glue/plugins/webplugin_delegate_impl_mac.mm b/webkit/glue/plugins/webplugin_delegate_impl_mac.mm index 014e755..4b5c093 100644 --- a/webkit/glue/plugins/webplugin_delegate_impl_mac.mm +++ b/webkit/glue/plugins/webplugin_delegate_impl_mac.mm @@ -219,6 +219,10 @@ void WebPluginDelegateImpl::PlatformInitialize() { // destroyPlugin in WebNetscapePluginView.mm, for examples). quirks_ |= PLUGIN_QUIRK_DONT_SET_NULL_WINDOW_HANDLE_ON_DESTROY; + // Silverlight doesn't always unload cleanly, so don't unload it at shutdown. + if (instance()->mime_type().find("x-silverlight") != std::string::npos) + instance()->plugin_lib()->PreventLibraryUnload(); + #ifndef NP_NO_CARBON if (instance()->event_model() == NPEventModelCarbon) { // Create a stand-in for the browser window so that the plugin will have |