diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-08 19:46:18 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-08 19:46:18 +0000 |
commit | 610c089bd27051ca8d2b983e784b31c533cbfef8 (patch) | |
tree | 5405ca268d1302facfa03b84f75b1ca3240fdb52 /webkit/glue/plugins/plugin_list.h | |
parent | f0f9663246d5bd8a2d03721d7390bdb2db244e18 (diff) | |
download | chromium_src-610c089bd27051ca8d2b983e784b31c533cbfef8.zip chromium_src-610c089bd27051ca8d2b983e784b31c533cbfef8.tar.gz chromium_src-610c089bd27051ca8d2b983e784b31c533cbfef8.tar.bz2 |
Take out the activex control.BUG=20259
Review URL: http://codereview.chromium.org/200031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25650 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/plugins/plugin_list.h')
-rw-r--r-- | webkit/glue/plugins/plugin_list.h | 22 |
1 files changed, 6 insertions, 16 deletions
diff --git a/webkit/glue/plugins/plugin_list.h b/webkit/glue/plugins/plugin_list.h index d8b5662..7fc2b58 100644 --- a/webkit/glue/plugins/plugin_list.h +++ b/webkit/glue/plugins/plugin_list.h @@ -118,7 +118,6 @@ class PluginList { // plugins which support wildcard mime types (* as the mime type). bool GetPluginInfo(const GURL& url, const std::string& mime_type, - const std::string& clsid, bool allow_wildcard, WebPluginInfo* info, std::string* actual_mime_type); @@ -149,22 +148,16 @@ class PluginList { bool ShouldLoadPlugin(const WebPluginInfo& info, std::vector<WebPluginInfo>* plugins); - // Load internal plugins. - void LoadInternalPlugins(std::vector<WebPluginInfo>* plugins); - - // Find a plugin by mime type, and clsid. - // If clsid is empty, we will just find the plugin that supports mime type. - // Otherwise, if mime_type is application/x-oleobject etc that's supported by - // by our activex shim, we need to check if the specified ActiveX exists. - // If not we will not return the activex shim, instead we will let the - // default plugin handle activex installation. + // Find a plugin by mime type. // The allow_wildcard parameter controls whether this function returns // plugins which support wildcard mime types (* as the mime type) - bool FindPlugin(const std::string &mime_type, const std::string& clsid, - bool allow_wildcard, WebPluginInfo* info); + bool FindPlugin(const std::string &mime_type, + bool allow_wildcard, + WebPluginInfo* info); // Find a plugin by extension. Returns the corresponding mime type. - bool FindPlugin(const GURL &url, std::string* actual_mime_type, + bool FindPlugin(const GURL &url, + std::string* actual_mime_type, WebPluginInfo* info); // Returns true if the given WebPluginInfo supports "mime-type". @@ -199,9 +192,6 @@ class PluginList { #if defined(OS_WIN) // true if we shouldn't load the new WMP plugin. bool dont_load_new_wmp_; - - // true if we should use our internal ActiveX shim - bool use_internal_activex_shim_; #endif // |