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

Unified Diff: third_party/crashpad/crashpad/handler/handler_main.cc

Issue 2814043003: Update Crashpad to 1f28a123a4c9449e3d7ddad4ff00dacd366d5216 (Closed)
Patch Set: Add missing GN config to fix compile/link. Created 3 years, 8 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
Index: third_party/crashpad/crashpad/handler/handler_main.cc
diff --git a/third_party/crashpad/crashpad/handler/handler_main.cc b/third_party/crashpad/crashpad/handler/handler_main.cc
index f58f1ba4cd05862e23f6fdb4967f16cb9b7e87ef..641bf0f635b853922257cb1d182cf63d1719051d 100644
--- a/third_party/crashpad/crashpad/handler/handler_main.cc
+++ b/third_party/crashpad/crashpad/handler/handler_main.cc
@@ -388,7 +388,9 @@ void MonitorSelf(const Options& options) {
} // namespace
-int HandlerMain(int argc, char* argv[]) {
+int HandlerMain(int argc,
+ char* argv[],
+ const UserStreamDataSources* user_stream_sources) {
InstallCrashHandler();
CallMetricsRecordNormalExit metrics_record_normal_exit;
@@ -727,8 +729,10 @@ int HandlerMain(int argc, char* argv[]) {
PruneCondition::GetDefault());
prune_thread.Start();
- CrashReportExceptionHandler exception_handler(
- database.get(), &upload_thread, &options.annotations);
+ CrashReportExceptionHandler exception_handler(database.get(),
+ &upload_thread,
+ &options.annotations,
+ user_stream_sources);
#if defined(OS_WIN)
if (options.initial_client_data.IsValid()) {
« no previous file with comments | « third_party/crashpad/crashpad/handler/handler_main.h ('k') | third_party/crashpad/crashpad/handler/handler_test.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698