| Index: webkit/tools/test_shell/test_shell_switches.cc
|
| diff --git a/webkit/tools/test_shell/test_shell_switches.cc b/webkit/tools/test_shell/test_shell_switches.cc
|
| index d0bf04c4e42900d637c00adf2cf65c164442d05e..0769525f5f1a52836100666018f695363e586658 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
|
|
|