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

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

Issue 1085003: Implement chrome://plugins page that can disable plugins. (Closed)
Patch Set: merge ToT again Created 10 years, 9 months 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
« no previous file with comments | « webkit/glue/plugins/plugin_list.cc ('k') | no next file » | 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_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
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_
OLDNEW
« no previous file with comments | « webkit/glue/plugins/plugin_list.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698