diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-30 17:29:27 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-30 17:29:27 +0000 |
commit | 40350b13714bed9c76d8bb0991c490b2ee14fe05 (patch) | |
tree | ab2c88b3f9f5ba6e179a4547fb6b47bd3a768e95 /webkit | |
parent | 3450c47c2b62b3db03c3d3a873252072baecd40c (diff) | |
download | chromium_src-40350b13714bed9c76d8bb0991c490b2ee14fe05.zip chromium_src-40350b13714bed9c76d8bb0991c490b2ee14fe05.tar.gz chromium_src-40350b13714bed9c76d8bb0991c490b2ee14fe05.tar.bz2 |
Minor C++ fixes found by Clang.
In cases where I've added an #include, it's generally due to Clang being
more picky about templates being available during expansions.
Review URL: http://codereview.chromium.org/1432003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43098 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/tools/test_shell/test_shell_switches.cc | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/webkit/tools/test_shell/test_shell_switches.cc b/webkit/tools/test_shell/test_shell_switches.cc index d0bf04c..0769525 100644 --- a/webkit/tools/test_shell/test_shell_switches.cc +++ b/webkit/tools/test_shell/test_shell_switches.cc @@ -72,17 +72,16 @@ const char kAllowScriptsToCloseWindows[] = "allow-scripts-to-close-windows"; // Test the system dependencies (themes, fonts, ...). When this flag is // specified, the test shell will exit immediately with either 0 (success) or // 1 (failure). Combining with other flags has no effect. -extern const char kCheckLayoutTestSystemDeps[] = - "check-layout-test-sys-deps"; +const char kCheckLayoutTestSystemDeps[] = "check-layout-test-sys-deps"; // If set, we are running under GDB so allow a certain class of errors // to happen even if in layout test mode. -extern const char kGDB[] = "gdb"; +const char kGDB[] = "gdb"; // Make functions of the Profiler class available in javascript -extern const char kProfiler[] = "profiler"; +const char kProfiler[] = "profiler"; // Make functions of the HeapProfiler class available in javascript -extern const char kHeapProfiler[] = "heap-profiler"; +const char kHeapProfiler[] = "heap-profiler"; } // namespace test_shell |