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

Side by Side Diff: webkit/plugins/npapi/plugin_lib.h

Issue 6205004: Re-land: add support for blocking out-of-date plug-ins on Linux.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « webkit/plugins/npapi/plugin_group_unittest.cc ('k') | webkit/plugins/npapi/plugin_lib_posix.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_PLUGIN_LIB_H_ 5 #ifndef WEBKIT_PLUGINS_NPAPI_PLUGIN_LIB_H_
6 #define WEBKIT_PLUGINS_NPAPI_PLUGIN_LIB_H_ 6 #define WEBKIT_PLUGINS_NPAPI_PLUGIN_LIB_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 21 matching lines...) Expand all
32 // Creates a WebPluginInfo structure given a plugin's path. On success 32 // Creates a WebPluginInfo structure given a plugin's path. On success
33 // returns true, with the information being put into "info". 33 // returns true, with the information being put into "info".
34 // Returns false if the library couldn't be found, or if it's not a plugin. 34 // Returns false if the library couldn't be found, or if it's not a plugin.
35 static bool ReadWebPluginInfo(const FilePath& filename, WebPluginInfo* info); 35 static bool ReadWebPluginInfo(const FilePath& filename, WebPluginInfo* info);
36 36
37 #if defined(OS_POSIX) && !defined(OS_MACOSX) 37 #if defined(OS_POSIX) && !defined(OS_MACOSX)
38 // Parse the result of an NP_GetMIMEDescription() call. 38 // Parse the result of an NP_GetMIMEDescription() call.
39 // This API is only used on Unixes, and is exposed here for testing. 39 // This API is only used on Unixes, and is exposed here for testing.
40 static void ParseMIMEDescription(const std::string& description, 40 static void ParseMIMEDescription(const std::string& description,
41 std::vector<WebPluginMimeType>* mime_types); 41 std::vector<WebPluginMimeType>* mime_types);
42
43 // Extract a version number from a description string.
44 // This API is only used on Unixes, and is exposed here for testing.
45 static void ExtractVersionString(const std::string& version,
46 WebPluginInfo* info);
42 #endif 47 #endif
43 48
44 // Unloads all the loaded plugin libraries and cleans up the plugin map. 49 // Unloads all the loaded plugin libraries and cleans up the plugin map.
45 static void UnloadAllPlugins(); 50 static void UnloadAllPlugins();
46 51
47 // Shuts down all loaded plugin instances. 52 // Shuts down all loaded plugin instances.
48 static void ShutdownAllPlugins(); 53 static void ShutdownAllPlugins();
49 54
50 // Get the Plugin's function pointer table. 55 // Get the Plugin's function pointer table.
51 NPPluginFuncs* functions(); 56 NPPluginFuncs* functions();
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 // Function pointers to entry points into the plugin. 118 // Function pointers to entry points into the plugin.
114 PluginEntryPoints entry_points_; 119 PluginEntryPoints entry_points_;
115 120
116 DISALLOW_COPY_AND_ASSIGN(PluginLib); 121 DISALLOW_COPY_AND_ASSIGN(PluginLib);
117 }; 122 };
118 123
119 } // namespace npapi 124 } // namespace npapi
120 } // namespace webkit 125 } // namespace webkit
121 126
122 #endif // WEBKIT_PLUGINS_NPAPI_PLUGIN_LIB_H_ 127 #endif // WEBKIT_PLUGINS_NPAPI_PLUGIN_LIB_H_
OLDNEW
« no previous file with comments | « webkit/plugins/npapi/plugin_group_unittest.cc ('k') | webkit/plugins/npapi/plugin_lib_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698