diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-31 04:32:30 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-31 04:32:30 +0000 |
commit | e612d764f473f54807cb24bedc1b147bb9672ca6 (patch) | |
tree | 361f7de9eb49f81e201b6eefafa6cc8d7061d575 /webkit/glue/webplugininfo.h | |
parent | 711abaeaaec2bb552d9fe161200778f449fd2da0 (diff) | |
download | chromium_src-e612d764f473f54807cb24bedc1b147bb9672ca6.zip chromium_src-e612d764f473f54807cb24bedc1b147bb9672ca6.tar.gz chromium_src-e612d764f473f54807cb24bedc1b147bb9672ca6.tar.bz2 |
Move plugin-related files in webkit/glue to webkit/glue/plugins to make them
easier to find. With a random subset of files in webkit/glue, it's impossible
to predict where you should find a file. No code change
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/1559008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43177 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webplugininfo.h')
-rw-r--r-- | webkit/glue/webplugininfo.h | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/webkit/glue/webplugininfo.h b/webkit/glue/webplugininfo.h deleted file mode 100644 index 21f34df..0000000 --- a/webkit/glue/webplugininfo.h +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef WEBKIT_GLUE_WEBPLUGININFO_H_ -#define WEBKIT_GLUE_WEBPLUGININFO_H_ - -#include <string> -#include <vector> - -#include "base/basictypes.h" -#include "base/file_path.h" - -// Describes a mime type entry for a plugin. -struct WebPluginMimeType { - // The name of the mime type (e.g., "application/x-shockwave-flash"). - 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; - - // Whether the plugin is enabled. - bool enabled; -}; - -#endif // WEBKIT_GLUE_WEBPLUGININFO_H_ |