diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-22 23:31:29 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-22 23:31:29 +0000 |
commit | 4f1efc89c3983d87c07a74f47bd111067e8c870a (patch) | |
tree | e7eee84b1c020e35fc5c6a49df534cbdd05efcbb /webkit/glue/plugins/plugin_host.h | |
parent | 503631cfa06aaae686f2e9a6f55ebc1859e8dab3 (diff) | |
download | chromium_src-4f1efc89c3983d87c07a74f47bd111067e8c870a.zip chromium_src-4f1efc89c3983d87c07a74f47bd111067e8c870a.tar.gz chromium_src-4f1efc89c3983d87c07a74f47bd111067e8c870a.tar.bz2 |
- Lots of removed whitespace at the end of the line
- ifdef out windows specific calls
- fix simple compiler warnings
Review URL: http://codereview.chromium.org/7886
Patch from icefox.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3794 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/plugins/plugin_host.h')
-rw-r--r-- | webkit/glue/plugins/plugin_host.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/webkit/glue/plugins/plugin_host.h b/webkit/glue/plugins/plugin_host.h index be12d5e..acf0bad9 100644 --- a/webkit/glue/plugins/plugin_host.h +++ b/webkit/glue/plugins/plugin_host.h @@ -19,11 +19,11 @@ namespace NPAPI class PluginInstance; // The Plugin Host implements the NPN_xxx functions for NPAPI plugins. -// These are the functions exposed from the Plugin Host for use +// These are the functions exposed from the Plugin Host for use // by the Plugin. // -// The PluginHost is managed as a singleton. This isn't strictly -// necessary, but since the callback functions are all global C +// The PluginHost is managed as a singleton. This isn't strictly +// necessary, but since the callback functions are all global C // functions, there is really no point in having per-instance PluginHosts. class PluginHost : public base::RefCounted<PluginHost> { public: @@ -31,13 +31,13 @@ class PluginHost : public base::RefCounted<PluginHost> { // must call deref() when finished with the object. static PluginHost *Singleton(); virtual ~PluginHost(); - + // The table of functions provided to the plugin. NPNetscapeFuncs *host_functions() { return &host_funcs_; } - // Helper function for parsing post headers, and applying attributes - // to the stream. NPAPI post data include headers + data combined. - // This function parses it out and adds it to the stream in a WebKit + // Helper function for parsing post headers, and applying attributes + // to the stream. NPAPI post data include headers + data combined. + // This function parses it out and adds it to the stream in a WebKit // style. static bool SetPostData(const char *buf, uint32 length, |