RESOLVED FIXED 62899
[UNIX] Don't use WebCore::PluginPackage to get plugin information
https://bugs.webkit.org/show_bug.cgi?id=62899
Summary [UNIX] Don't use WebCore::PluginPackage to get plugin information
Carlos Garcia Campos
Reported 2011-06-17 12:13:19 PDT
The problem is that both PluginPackage in WebCore and NetscapePluginModule in webkit2 install their own netscape browser functions and that can cause conflicts in some situations.
Attachments
Patch (7.24 KB, patch)
2011-06-17 12:17 PDT, Carlos Garcia Campos
no flags
Patach rebased to current git master (7.38 KB, patch)
2011-06-20 06:05 PDT, Carlos Garcia Campos
mrobinson: review+
Carlos Garcia Campos
Comment 1 2011-06-17 12:17:42 PDT
Carlos Garcia Campos
Comment 2 2011-06-20 06:05:38 PDT
Created attachment 97790 [details] Patach rebased to current git master It seems previous patch didn't apply, this one has been rebased to current git master so it should apply.
Martin Robinson
Comment 3 2011-06-20 09:57:35 PDT
Comment on attachment 97790 [details] Patach rebased to current git master View in context: https://bugs.webkit.org/attachment.cgi?id=97790&action=review Looks good, but please take a look at the following suggestions before landing. > Source/WebKit2/Shared/Plugins/Netscape/x11/NetscapePluginModuleX11.cpp:104 > + Vector<String> mime; Maybe call this something like mimeTypeParts. > Source/WebKit2/Shared/Plugins/Netscape/x11/NetscapePluginModuleX11.cpp:116 > + Vector<String> extensions; > + if (mime.size() > 1) { > + mime[1].split(UChar(','), false, extensions); > + mimeInfo.extensions = extensions; Can you just pass mimeInfo.extensions to the split call here?
Carlos Garcia Campos
Comment 4 2011-06-20 10:49:29 PDT
Note You need to log in before you can comment on or make changes to this bug.