Bug 952602 - #ifdef EARLY_BETA_OR_EARLIER to disable navigator.plugins[] cloaking before GA release. r=bsmedberg a=sylvestre

This commit is contained in:
Chris Peterson 2014-01-01 21:26:09 -08:00
parent 571d7915d5
commit 41be84583b

View File

@ -1964,7 +1964,11 @@ pref("plugins.click_to_play", false);
// Player ("Shockwave for Director"). To hide all plugins from enumeration, use
// the empty string "" to match no plugin names. To allow all plugins to be
// enumerated, use the string "*" to match all plugin names.
#ifdef EARLY_BETA_OR_EARLIER
pref("plugins.enumerable_names", "Java,Nexus Personal,QuickTime,Shockwave");
#else
pref("plugins.enumerable_names", "*");
#endif
// The default value for nsIPluginTag.enabledState (STATE_ENABLED = 2)
pref("plugin.default.state", 2);