diff options
author | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-23 17:48:01 +0000 |
---|---|---|
committer | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-23 17:48:01 +0000 |
commit | 5a93bab9e0dfe14c0d068338d8745812cc7271c4 (patch) | |
tree | a34d3d8ce7971087ff0ec3e0d2d164042924c7db /webkit/glue/plugins/plugin_lib.cc | |
parent | 035bcb7fa5b3ac93971a832725c4a4815ba86fd2 (diff) | |
download | chromium_src-5a93bab9e0dfe14c0d068338d8745812cc7271c4.zip chromium_src-5a93bab9e0dfe14c0d068338d8745812cc7271c4.tar.gz chromium_src-5a93bab9e0dfe14c0d068338d8745812cc7271c4.tar.bz2 |
None of these files need to include config.h any longer...so remove it.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/155970
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21405 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/plugins/plugin_lib.cc')
-rw-r--r-- | webkit/glue/plugins/plugin_lib.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/plugins/plugin_lib.cc b/webkit/glue/plugins/plugin_lib.cc index 563e1a3..9e8a681 100644 --- a/webkit/glue/plugins/plugin_lib.cc +++ b/webkit/glue/plugins/plugin_lib.cc @@ -2,8 +2,6 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "config.h" - #include "webkit/glue/plugins/plugin_lib.h" #include "base/logging.h" @@ -244,12 +242,14 @@ void PluginLib::Unload() { // so that the plugin will have a chance to unwind. bool defer_unload = webkit_glue::IsPluginRunningInRendererProcess(); +/* TODO(dglazkov): Revisit when re-enabling the JSC build. #if USE(JSC) // The plugin NPAPI instances may still be around. Delay the // NP_Shutdown and FreeLibrary calls at least till the next // peek message. defer_unload = true; #endif +*/ if (defer_unload) { FreePluginLibraryTask* free_library_task = |