summaryrefslogtreecommitdiffstats
path: root/webkit/support
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/support')
-rw-r--r--webkit/support/webkit_support_glue.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/webkit/support/webkit_support_glue.cc b/webkit/support/webkit_support_glue.cc
index 739289f..2308a40 100644
--- a/webkit/support/webkit_support_glue.cc
+++ b/webkit/support/webkit_support_glue.cc
@@ -15,12 +15,12 @@ namespace webkit_glue {
void GetPlugins(bool refresh, std::vector<WebPluginInfo>* plugins) {
NPAPI::PluginList::Singleton()->GetPlugins(refresh, plugins);
- // Don't load the forked npapi_layout_test_plugin in DRT, we only
- // want to use the upstream version TestNetscapePlugIn. We don't need to
- // blacklist on Mac because DRT Mac already uses the upstream version of
- // TestNetscapePlugIn.
+ // Don't load the forked npapi_layout_test_plugin in DRT, we only want to
+ // use the upstream version TestNetscapePlugIn (on Mac, the upstream version
+ // is named WebKitTestNetscapePlugIn).
const FilePath::StringType kPluginBlackList[] = {
FILE_PATH_LITERAL("npapi_layout_test_plugin.dll"),
+ FILE_PATH_LITERAL("TestNetscapePlugIn.plugin"),
FILE_PATH_LITERAL("libnpapi_layout_test_plugin.so"),
};
for (int i = plugins->size() - 1; i >= 0; --i) {