Interface of crashpad_client.StartHandler has changed

Refs:
7b9234c4b2%5E%21/
This commit is contained in:
Cheng Zhao 2017-01-24 16:57:55 +09:00 committed by Kevin Sawicki
parent 4a14b17255
commit 8a6fd685e3

View file

@ -44,13 +44,12 @@ void CrashReporterMac::InitBreakpad(const std::string& product_name,
framework_bundle_path.Append("Resources").Append("crashpad_handler");
crashpad::CrashpadClient crashpad_client;
if (crashpad_client.StartHandler(handler_path, crashes_dir,
submit_url,
StringMap(),
std::vector<std::string>(),
true)) {
crashpad_client.UseHandler();
}
crashpad_client.StartHandler(handler_path, crashes_dir, crashes_dir,
submit_url,
StringMap(),
std::vector<std::string>(),
true,
false);
} // @autoreleasepool
}