summaryrefslogtreecommitdiffstats
path: root/chrome/browser/mock_plugin_exceptions_table_model.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-02 00:42:39 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-02 00:42:39 +0000
commita466a0c5b21e3ecf2b5ff3f37260e167fe1b017f (patch)
tree98761cf267cf1be613e420da8e251d8cfdcf403a /chrome/browser/mock_plugin_exceptions_table_model.h
parent10575ccb63ed99277da1b9663a71ede2be497708 (diff)
downloadchromium_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/mock_plugin_exceptions_table_model.h')
-rw-r--r--chrome/browser/mock_plugin_exceptions_table_model.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/mock_plugin_exceptions_table_model.h b/chrome/browser/mock_plugin_exceptions_table_model.h
index eea5a4d..d1f5da7 100644
--- a/chrome/browser/mock_plugin_exceptions_table_model.h
+++ b/chrome/browser/mock_plugin_exceptions_table_model.h
@@ -17,13 +17,13 @@ class MockPluginExceptionsTableModel : public PluginExceptionsTableModel {
: PluginExceptionsTableModel(map, otr_map) {}
virtual ~MockPluginExceptionsTableModel() {}
- void set_plugins(const PluginUpdater::PluginMap& plugins);
+ void set_plugins(const NPAPI::PluginList::PluginMap& plugins);
protected:
- virtual void GetPlugins(PluginUpdater::PluginMap* plugins);
+ virtual void GetPlugins(NPAPI::PluginList::PluginMap* plugins);
private:
- PluginUpdater::PluginMap plugins_;
+ NPAPI::PluginList::PluginMap plugins_;
};
#endif // CHROME_BROWSER_MOCK_PLUGIN_EXCEPTIONS_TABLE_MODEL_H_