summaryrefslogtreecommitdiffstats
path: root/chrome/browser/plugin_updater.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-01 01:04:44 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-01 01:04:44 +0000
commitecc166dd8f1bd5bcbf39c868cc4dd7f5ca2de634 (patch)
tree5108fa42f1f0ed12ec81cfdbe5f3c6071cd2eb71 /chrome/browser/plugin_updater.h
parentccd07800092c2f6337decffb62c9eb30c1d946b2 (diff)
downloadchromium_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.h4
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);