diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-12 05:13:26 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-12 05:13:26 +0000 |
commit | fc93ed7fa8f78b19ef21caf1f724ddf96005b999 (patch) | |
tree | fb64d4116bc8a48a632271acac0680f9289a3c64 /content/test/webkit_support_glue.cc | |
parent | c1e5c788c583e685210dcae48b025c95bf71ca56 (diff) | |
download | chromium_src-fc93ed7fa8f78b19ef21caf1f724ddf96005b999.zip chromium_src-fc93ed7fa8f78b19ef21caf1f724ddf96005b999.tar.gz chromium_src-fc93ed7fa8f78b19ef21caf1f724ddf96005b999.tar.bz2 |
Cleanup: Remove unused includes of webkit/glue/webkit_glue.h
This patch was generated by:
$ git grep -l webkit/glue/webkit_glue.h > list.txt
$ for f in $(cat list.txt); do if ! grep -q 'PlatformFileInfoToWebFileInfo' $f ; then echo $f; fi; done
$ for f in $(cat list.txt); do if ! grep -q 'SetJavaScript' $f ; then echo $f; fi; done
BUG=None
TEST=unit_tests, content_unittests
R=thestig@chromium.org
TBR=joth,avi,jamesr
Review URL: https://codereview.chromium.org/59323005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234409 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/test/webkit_support_glue.cc')
-rw-r--r-- | content/test/webkit_support_glue.cc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/content/test/webkit_support_glue.cc b/content/test/webkit_support_glue.cc index 5270e12..abee72a 100644 --- a/content/test/webkit_support_glue.cc +++ b/content/test/webkit_support_glue.cc @@ -2,11 +2,13 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "webkit/glue/webkit_glue.h" +#include <string> -#include "base/base_paths.h" -#include "base/path_service.h" +#include "build/build_config.h" +#if defined(OS_WIN) +#include <windows.h> +#endif // Functions needed by webkit_glue. namespace webkit_glue { |