Index: webkit/tools/test_shell/test_shell_main.cc |
=================================================================== |
--- webkit/tools/test_shell/test_shell_main.cc (revision 30209) |
+++ webkit/tools/test_shell/test_shell_main.cc (working copy) |
@@ -45,13 +45,14 @@ |
namespace { |
// StatsTable initialization parameters. |
-static const char* kStatsFilePrefix = "testshell_"; |
-static int kStatsFileThreads = 20; |
-static int kStatsFileCounters = 200; |
+const char* const kStatsFilePrefix = "testshell_"; |
+int kStatsFileThreads = 20; |
+int kStatsFileCounters = 200; |
} // namespace |
int main(int argc, char* argv[]) { |
+ base::EnableInProcessStackDumping(); |
base::EnableTerminationOnHeapCorruption(); |
// Some tests may use base::Singleton<>, thus we need to instanciate |