diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-02 00:42:39 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-02 00:42:39 +0000 |
commit | a466a0c5b21e3ecf2b5ff3f37260e167fe1b017f (patch) | |
tree | 98761cf267cf1be613e420da8e251d8cfdcf403a /chrome/browser/plugin_updater.h | |
parent | 10575ccb63ed99277da1b9663a71ede2be497708 (diff) | |
download | chromium_src-a466a0c5b21e3ecf2b5ff3f37260e167fe1b017f.zip chromium_src-a466a0c5b21e3ecf2b5ff3f37260e167fe1b017f.tar.gz chromium_src-a466a0c5b21e3ecf2b5ff3f37260e167fe1b017f.tar.bz2 |
Don't load plugins on the UI thread for pref and group policy disabling.
BUG=57425
Review URL: http://codereview.chromium.org/3584007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61271 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/plugin_updater.h')
-rw-r--r-- | chrome/browser/plugin_updater.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/chrome/browser/plugin_updater.h b/chrome/browser/plugin_updater.h index 74cc286..5ed620b 100644 --- a/chrome/browser/plugin_updater.h +++ b/chrome/browser/plugin_updater.h @@ -6,11 +6,8 @@ #define CHROME_BROWSER_PLUGIN_UPDATER_H_ #pragma once -#include <map> - #include "base/basictypes.h" #include "base/file_path.h" -#include "base/linked_ptr.h" #include "base/singleton.h" #include "chrome/common/notification_observer.h" @@ -24,11 +21,6 @@ struct WebPluginInfo; class PluginUpdater : public NotificationObserver { public: - typedef std::map<std::string, linked_ptr<PluginGroup> > PluginMap; - - // Get a map from identifier to plugin group for all plugin groups. - static void GetPluginGroups(PluginMap* plugin_groups); - // Get a list of all the plugin groups. The caller should take ownership // of the returned ListValue. static ListValue* GetPluginGroupsData(); @@ -42,12 +34,6 @@ class PluginUpdater : public NotificationObserver { // Disable all plugin groups as defined by the user's preference file. void DisablePluginGroupsFromPrefs(Profile* profile); - // Disable all plugins groups that are known to be outdated, according to - // the information hardcoded in PluginGroup, to make sure that they can't - // be loaded on a web page and instead show a UI to update to the latest - // version. - void DisableOutdatedPluginGroups(); - // Write the enable/disable status to the user's preference file. void UpdatePreferences(Profile* profile); |