diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-24 17:17:45 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-24 17:17:45 +0000 |
commit | 706f2dcd21c3628dfdda1448235fb4b46c1bab39 (patch) | |
tree | 8775eecc3423aea3813b6f1263c48af8a5f97ff5 /webkit/glue/webplugin.h | |
parent | cf62075e20a12d43c9a9de07411f4c0c1f47336d (diff) | |
download | chromium_src-706f2dcd21c3628dfdda1448235fb4b46c1bab39.zip chromium_src-706f2dcd21c3628dfdda1448235fb4b46c1bab39.tar.gz chromium_src-706f2dcd21c3628dfdda1448235fb4b46c1bab39.tar.bz2 |
Chrome side of using WebPluginListBuilder.
I also broke glue/webplugininfo.h out of glue/webplugin.h as part of this
change. Eventually, glue/webplugin.h will go away and be moved into the WebKit
API, but the structures left in glue/webplugininfo.h need to remain since they
are used extensively throughout Chrome.
BUG=10922
R=dglazkov
Review URL: http://codereview.chromium.org/93116
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14438 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webplugin.h')
-rw-r--r-- | webkit/glue/webplugin.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/webkit/glue/webplugin.h b/webkit/glue/webplugin.h index 64791ea..682e138 100644 --- a/webkit/glue/webplugin.h +++ b/webkit/glue/webplugin.h @@ -24,38 +24,6 @@ class WebPluginResourceClient; struct NPObject; -// Describes a mime type entry for a plugin. -struct WebPluginMimeType { - // The actual mime type. - std::string mime_type; - - // A list of all the file extensions for this mime type. - std::vector<std::string> file_extensions; - - // Description of the mime type. - std::wstring description; -}; - - -// Describes an available NPAPI plugin. -struct WebPluginInfo { - // The name of the plugin (i.e. Flash). - std::wstring name; - - // The path to the plugin file (DLL/bundle/library). - FilePath path; - - // The version number of the plugin file (may be OS-specific) - std::wstring version; - - // A description of the plugin that we get from its version info. - std::wstring desc; - - // A list of all the mime types that this plugin supports. - std::vector<WebPluginMimeType> mime_types; -}; - - // Describes the new location for a plugin window. struct WebPluginGeometry { gfx::NativeView window; |