OLD | NEW |
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_GLUE_WEBPLUGININFO_H_ | 5 #ifndef WEBKIT_GLUE_WEBPLUGININFO_H_ |
6 #define WEBKIT_GLUE_WEBPLUGININFO_H_ | 6 #define WEBKIT_GLUE_WEBPLUGININFO_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 21 matching lines...) Expand all Loading... |
32 FilePath path; | 32 FilePath path; |
33 | 33 |
34 // The version number of the plugin file (may be OS-specific) | 34 // The version number of the plugin file (may be OS-specific) |
35 std::wstring version; | 35 std::wstring version; |
36 | 36 |
37 // A description of the plugin that we get from its version info. | 37 // A description of the plugin that we get from its version info. |
38 std::wstring desc; | 38 std::wstring desc; |
39 | 39 |
40 // A list of all the mime types that this plugin supports. | 40 // A list of all the mime types that this plugin supports. |
41 std::vector<WebPluginMimeType> mime_types; | 41 std::vector<WebPluginMimeType> mime_types; |
| 42 |
| 43 // Whether the plugin is enabled. |
| 44 bool enabled; |
42 }; | 45 }; |
43 | 46 |
44 #endif // WEBKIT_GLUE_WEBPLUGININFO_H_ | 47 #endif // WEBKIT_GLUE_WEBPLUGININFO_H_ |
OLD | NEW |