summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-31 21:28:20 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-31 21:28:20 +0000
commit4634903ad5f9cae3947ffd3f91a0c0308f45db4b (patch)
tree0183409c88a48c34b3f48d8ca00fa3cbc07086bb
parentf9e81e636a9fa910b51855a9b5ffd1d72b2da89a (diff)
downloadchromium_src-4634903ad5f9cae3947ffd3f91a0c0308f45db4b.zip
chromium_src-4634903ad5f9cae3947ffd3f91a0c0308f45db4b.tar.gz
chromium_src-4634903ad5f9cae3947ffd3f91a0c0308f45db4b.tar.bz2
Fix two bugs for setting the pdf plugin on by default:
-fix regression in enabling the plugin after the PluginGroup change -rename the pref name, and add a dcheck to ensure this always is done, every time the plugin flips from enabled->disabled by default Review URL: http://codereview.chromium.org/3238015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58072 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/plugin_updater.cc22
1 files changed, 22 insertions, 0 deletions
diff --git a/chrome/browser/plugin_updater.cc b/chrome/browser/plugin_updater.cc
index c0712b7..ab303ba 100644
--- a/chrome/browser/plugin_updater.cc
+++ b/chrome/browser/plugin_updater.cc
@@ -91,10 +91,13 @@ void EnablePluginFile(bool enable, const FilePath::StringType& path) {
NPAPI::PluginList::Singleton()->DisablePlugin(file_path);
}
+// Note: if you change this to false from true, you must update
+// kPluginsEnabledInternalPDF to be a new name (i.e. add 2, 3, 4...) at end.
static bool enable_internal_pdf_ = true;
void DisablePluginGroupsFromPrefs(Profile* profile) {
bool update_internal_dir = false;
+ bool update_preferences = false;
FilePath last_internal_dir =
profile->GetPrefs()->GetFilePath(prefs::kPluginsLastInternalDirectory);
FilePath cur_internal_dir;
@@ -105,8 +108,17 @@ void DisablePluginGroupsFromPrefs(Profile* profile) {
prefs::kPluginsLastInternalDirectory, cur_internal_dir);
}
+ if (!enable_internal_pdf_) {
+ // This DCHECK guards against us disabling/enabling the pdf plugin more than
+ // once without renaming the flag that tells us whether we can enable it
+ // automatically. Each time we disable the plugin by default after it was
+ // enabled by default, we need to rename that flag.
+ DCHECK(!profile->GetPrefs()->GetBoolean(prefs::kPluginsEnabledInternalPDF));
+ }
+
bool found_internal_pdf = false;
bool force_enable_internal_pdf = false;
+ string16 pdf_group_name;
FilePath pdf_path;
PathService::Get(chrome::FILE_PDF_PLUGIN, &pdf_path);
FilePath::StringType pdf_path_str = pdf_path.value();
@@ -152,14 +164,21 @@ void DisablePluginGroupsFromPrefs(Profile* profile) {
if (FilePath::CompareIgnoreCase(path, pdf_path_str) == 0) {
found_internal_pdf = true;
+ plugin->GetString("name", &pdf_group_name);
if (!enabled && force_enable_internal_pdf) {
enabled = true;
plugin->SetBoolean("enabled", true);
+ update_preferences = true; // Can't modify the list during looping.
}
}
if (!enabled)
NPAPI::PluginList::Singleton()->DisablePlugin(plugin_path);
} else if (!enabled && plugin->GetString("name", &group_name)) {
+ // Don't disable this group if it's for the pdf plugin and we just
+ // forced it on.
+ if (force_enable_internal_pdf && pdf_group_name == group_name)
+ continue;
+
// Otherwise this is a list of groups.
EnablePluginGroup(false, group_name);
}
@@ -207,6 +226,9 @@ void DisablePluginGroupsFromPrefs(Profile* profile) {
// overridden the default.
NPAPI::PluginList::Singleton()->DisablePlugin(pdf_path);
}
+
+ if (update_preferences)
+ UpdatePreferences(profile);
}
void DisableOutdatedPluginGroups() {