Index: webkit/glue/plugins/plugin_list_mac.mm |
=================================================================== |
--- webkit/glue/plugins/plugin_list_mac.mm (revision 20520) |
+++ webkit/glue/plugins/plugin_list_mac.mm (working copy) |
@@ -68,15 +68,12 @@ |
} |
bool PluginList::ShouldLoadPlugin(const WebPluginInfo& info) { |
- // TODO(port): uncomment the next line to enable plugins--disabled by |
- // default so that public dev builds fall back correctly to the no-plugin |
- // code on pages with plugins. |
- return false; |
- |
// Hierarchy check |
// (we're loading plugins hierarchically from Library folders, so plugins we |
// encounter earlier must override plugins we encounter later) |
+ // first, test to make sure the user really wants plugins |
Evan Martin
2009/07/13 21:39:07
this comment doesn't make sense
|
+ |
for (size_t i = 0; i < plugins_.size(); ++i) { |
if (plugins_[i].path.BaseName() == info.path.BaseName()) { |
return false; // We already have a loaded plugin higher in the hierarchy. |