Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(513)

Unified Diff: webkit/glue/plugins/plugin_list_mac.mm

Issue 149570: Add a temporary flag to enable plugins on the Mac and Linux while... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698