diff options
author | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-08 18:08:38 +0000 |
---|---|---|
committer | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-08 18:08:38 +0000 |
commit | ac25a1302787d42fcfbefdfeaad17cedec34e392 (patch) | |
tree | a36b51645c752ac19a4021098334af2a7c5b1a1f /webkit/glue/plugins | |
parent | d743a598543343501ec40884ec8acb8f017cc6a1 (diff) | |
download | chromium_src-ac25a1302787d42fcfbefdfeaad17cedec34e392.zip chromium_src-ac25a1302787d42fcfbefdfeaad17cedec34e392.tar.gz chromium_src-ac25a1302787d42fcfbefdfeaad17cedec34e392.tar.bz2 |
Fix windows compile warning.
TBR=jam
Review URL: http://codereview.chromium.org/4703001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65394 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/plugins')
-rw-r--r-- | webkit/glue/plugins/plugin_host.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/glue/plugins/plugin_host.cc b/webkit/glue/plugins/plugin_host.cc index 31a168a..7cf93ed 100644 --- a/webkit/glue/plugins/plugin_host.cc +++ b/webkit/glue/plugins/plugin_host.cc @@ -309,7 +309,7 @@ uint32_t NPN_MemFlush(uint32_t size) { // This is for dynamic discovery of new plugins. // Should force a re-scan of the plugins directory to load new ones. void NPN_ReloadPlugins(NPBool reload_pages) { - WebKit::resetPluginCache(reload_pages); + WebKit::resetPluginCache(reload_pages ? true : false); } // Requests a range of bytes for a seekable stream. |