Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Unified Diff: webkit/tools/test_shell/test_shell_win.cc

Issue 10805065: Roll breakpad DEPS r977:995 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Windows Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « breakpad/breakpad.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/test_shell/test_shell_win.cc
diff --git a/webkit/tools/test_shell/test_shell_win.cc b/webkit/tools/test_shell/test_shell_win.cc
index 70e1e0531c97540b39474adafee1309b94f87aa9..0b13870dedac4bf76ba0ab6346deacafb4d63d23 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
}
}
}
« no previous file with comments | « breakpad/breakpad.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698