summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
Diffstat (limited to 'webkit')
-rw-r--r--webkit/tools/test_shell/test_shell_win.cc16
1 files changed, 13 insertions, 3 deletions
diff --git a/webkit/tools/test_shell/test_shell_win.cc b/webkit/tools/test_shell/test_shell_win.cc
index 70e1e05..0b13870 100644
--- a/webkit/tools/test_shell/test_shell_win.cc
+++ b/webkit/tools/test_shell/test_shell_win.cc
@@ -182,11 +182,21 @@ void TestShell::InitializeTestShell(bool layout_test_mode,
parsed_command_line.GetSwitchValueNative(test_shell::kCrashDumps));
if (parsed_command_line.HasSwitch(test_shell::kCrashDumpsFulldump)) {
new google_breakpad::ExceptionHandler(
- dir, 0, &MinidumpCallback, 0, true,
- kFullDumpType, 0, 0);
+ dir, // dump_path
+ NULL, // filter
+ &MinidumpCallback, // callback
+ NULL, // callback_context
+ google_breakpad::ExceptionHandler::HANDLER_ALL, // handler_types
+ kFullDumpType, // dump_type
+ static_cast<const wchar_t*>(NULL), // pipe_name
+ NULL); // custom_info
} else {
new google_breakpad::ExceptionHandler(
- dir, 0, &MinidumpCallback, 0, true);
+ dir, // dump_path
+ NULL, // filter
+ &MinidumpCallback, // callback
+ NULL, // callback_context
+ google_breakpad::ExceptionHandler::HANDLER_ALL); // handler_tpes
}
}
}