From 40350b13714bed9c76d8bb0991c490b2ee14fe05 Mon Sep 17 00:00:00 2001 From: "evan@chromium.org" Date: Tue, 30 Mar 2010 17:29:27 +0000 Subject: 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 --- webkit/tools/test_shell/test_shell_switches.cc | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'webkit') 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 -- cgit v1.1