diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-01 01:04:44 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-01 01:04:44 +0000 |
commit | ecc166dd8f1bd5bcbf39c868cc4dd7f5ca2de634 (patch) | |
tree | 5108fa42f1f0ed12ec81cfdbe5f3c6071cd2eb71 /chrome/browser/plugin_updater.h | |
parent | ccd07800092c2f6337decffb62c9eb30c1d946b2 (diff) | |
download | chromium_src-ecc166dd8f1bd5bcbf39c868cc4dd7f5ca2de634.zip chromium_src-ecc166dd8f1bd5bcbf39c868cc4dd7f5ca2de634.tar.gz chromium_src-ecc166dd8f1bd5bcbf39c868cc4dd7f5ca2de634.tar.bz2 |
Fix about:plugins loading the plugin list on the UI thread. This way I can renable the check against loading the plugins on the UI/IO thread.
Review URL: http://codereview.chromium.org/3569008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61135 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/plugin_updater.h')
-rw-r--r-- | chrome/browser/plugin_updater.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/plugin_updater.h b/chrome/browser/plugin_updater.h index 401ab61..74cc286 100644 --- a/chrome/browser/plugin_updater.h +++ b/chrome/browser/plugin_updater.h @@ -27,11 +27,11 @@ class PluginUpdater : public NotificationObserver { typedef std::map<std::string, linked_ptr<PluginGroup> > PluginMap; // Get a map from identifier to plugin group for all plugin groups. - void GetPluginGroups(PluginMap* 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. - ListValue* GetPluginGroupsData(); + static ListValue* GetPluginGroupsData(); // Enable or disable a plugin group. void EnablePluginGroup(bool enable, const string16& group_name); |