diff options
author | avi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-06 21:39:04 +0000 |
---|---|---|
committer | avi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-06 21:39:04 +0000 |
commit | 28ab7f9770e0096536e5277c62f5463625f152bd (patch) | |
tree | fd7db6edfb8ad20a39944ac3d438d2ca4738c1fb /webkit/glue/plugins/plugin_lib.h | |
parent | d7bb1f68d48f5939c9579fbfacd82389096b776c (diff) | |
download | chromium_src-28ab7f9770e0096536e5277c62f5463625f152bd.zip chromium_src-28ab7f9770e0096536e5277c62f5463625f152bd.tar.gz chromium_src-28ab7f9770e0096536e5277c62f5463625f152bd.tar.bz2 |
Change "dll" to "plugin" where appropriate.
Review URL: http://codereview.chromium.org/16543
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7617 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/plugins/plugin_lib.h')
-rw-r--r-- | webkit/glue/plugins/plugin_lib.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/webkit/glue/plugins/plugin_lib.h b/webkit/glue/plugins/plugin_lib.h index 11b3498..cd3db97 100644 --- a/webkit/glue/plugins/plugin_lib.h +++ b/webkit/glue/plugins/plugin_lib.h @@ -24,7 +24,7 @@ namespace NPAPI class PluginInstance; -// This struct fully describes a plugin. For dll plugins, it's read in from +// This struct fully describes a plugin. For external plugins, it's read in from // the version info of the dll; For internal plugins, it's predefined. struct PluginVersionInfo { std::wstring file_name; @@ -52,7 +52,7 @@ class PluginLib : public base::RefCounted<PluginLib> { virtual ~PluginLib(); static PluginLib* CreatePluginLib(const FilePath& filename); - // Unloads all the loaded plugin dlls and cleans up the plugin map. + // Unloads all the loaded plugin libraries and cleans up the plugin map. static void UnloadAllPlugins(); // Shuts down all loaded plugin instances. @@ -97,22 +97,22 @@ class PluginLib : public base::RefCounted<PluginLib> { private: // Creates a new PluginLib. The WebPluginInfo object is owned by this // object. If internal_plugin_info is not NULL, this Lib is an internal - // plugin thus doesn't need to load dll. + // plugin thus doesn't need to load a library. PluginLib(WebPluginInfo* info, const InternalPluginInfo* internal_plugin_info); - // Attempts to load the plugin from the DLL. + // Attempts to load the plugin from the library. // Returns true if it is a legitimate plugin, false otherwise bool Load(); - // Unloading the plugin DLL. + // Unloads the plugin library. void Unload(); - // Shutdown the plugin DLL. + // Shutdown the plugin library. void Shutdown(); // Returns a WebPluginInfo structure given a plugin's path. Returns NULL if - // the dll couldn't be found, or if it's not a plugin. + // the library couldn't be found, or if it's not a plugin. static WebPluginInfo* ReadWebPluginInfo(const FilePath &filename); // Creates WebPluginInfo structure based on read in or built in // PluginVersionInfo. |