OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |