diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-18 07:04:46 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-18 07:04:46 +0000 |
commit | 7db7581ccba3b06045295e7c3ca8a79703892fbb (patch) | |
tree | bffca8721023268c881e1d95adbff23b7d4970ef /webkit/tools/test_shell/test_webview_delegate.cc | |
parent | f0eb3d567ad9a7e98504e0a5981fa7f0ff6d4a18 (diff) | |
download | chromium_src-7db7581ccba3b06045295e7c3ca8a79703892fbb.zip chromium_src-7db7581ccba3b06045295e7c3ca8a79703892fbb.tar.gz chromium_src-7db7581ccba3b06045295e7c3ca8a79703892fbb.tar.bz2 |
More removal of config.h and glue_util.h dependencies.
I killed the #if ENABLE(WORKERS) defines in favor of always compiling
that code because it is harmless to compile it when the underlying
WebCore implementation is not compiled, thanks to the WebKit API.
R=yaar
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/404023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32303 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools/test_shell/test_webview_delegate.cc')
-rw-r--r-- | webkit/tools/test_shell/test_webview_delegate.cc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/webkit/tools/test_shell/test_webview_delegate.cc b/webkit/tools/test_shell/test_webview_delegate.cc index 258351c..1434e0d 100644 --- a/webkit/tools/test_shell/test_webview_delegate.cc +++ b/webkit/tools/test_shell/test_webview_delegate.cc @@ -6,10 +6,6 @@ // as the WebViewDelegate for the TestShellWebHost. The host is expected to // have initialized a MessageLoop before these methods are called. -#include "config.h" - -#undef LOG - #include "webkit/tools/test_shell/test_webview_delegate.h" #include "app/gfx/native_widget_types.h" @@ -591,11 +587,7 @@ WebPlugin* TestWebViewDelegate::createPlugin( WebWorker* TestWebViewDelegate::createWorker( WebFrame* frame, WebWorkerClient* client) { -#if ENABLE(WORKERS) return new TestWebWorker(); -#else - return NULL; -#endif } WebMediaPlayer* TestWebViewDelegate::createMediaPlayer( |