Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(276)

Side by Side Diff: webkit/glue/plugins/webplugininfo.h

Issue 5998002: Revert "Move the NPAPI files from webkit/glue/plugins to webkit/plugins/npapi" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/glue/plugins/webplugin_print_delegate.cc ('k') | webkit/glue/plugins/webplugininfo.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_PLUGINS_NPAPI_WEBPLUGININFO_H_ 5 #ifndef WEBKIT_GLUE_WEBPLUGININFO_H_
6 #define WEBKIT_PLUGINS_NPAPI_WEBPLUGININFO_H_ 6 #define WEBKIT_GLUE_WEBPLUGININFO_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/file_path.h" 12 #include "base/file_path.h"
13 13
14 namespace webkit {
15 namespace npapi {
16
17 // Describes a mime type entry for a plugin. 14 // Describes a mime type entry for a plugin.
18 struct WebPluginMimeType { 15 struct WebPluginMimeType {
19 WebPluginMimeType(); 16 WebPluginMimeType();
20 ~WebPluginMimeType(); 17 ~WebPluginMimeType();
21 18
22 // The name of the mime type (e.g., "application/x-shockwave-flash"). 19 // The name of the mime type (e.g., "application/x-shockwave-flash").
23 std::string mime_type; 20 std::string mime_type;
24 21
25 // A list of all the file extensions for this mime type. 22 // A list of all the file extensions for this mime type.
26 std::vector<std::string> file_extensions; 23 std::vector<std::string> file_extensions;
(...skipping 26 matching lines...) Expand all
53 // A description of the plugin that we get from its version info. 50 // A description of the plugin that we get from its version info.
54 string16 desc; 51 string16 desc;
55 52
56 // A list of all the mime types that this plugin supports. 53 // A list of all the mime types that this plugin supports.
57 std::vector<WebPluginMimeType> mime_types; 54 std::vector<WebPluginMimeType> mime_types;
58 55
59 // Whether the plugin is enabled. 56 // Whether the plugin is enabled.
60 bool enabled; 57 bool enabled;
61 }; 58 };
62 59
63 } // namespace npapi 60 #endif // WEBKIT_GLUE_WEBPLUGININFO_H_
64 } // namespace webkit
65
66 #endif // WEBKIT_PLUGINS_NPAPI_WEBPLUGININFO_H_
OLDNEW
« no previous file with comments | « webkit/glue/plugins/webplugin_print_delegate.cc ('k') | webkit/glue/plugins/webplugininfo.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698