Index: third_party/crashpad/crashpad/handler/mac/crash_report_exception_handler.h |
diff --git a/third_party/crashpad/crashpad/handler/mac/crash_report_exception_handler.h b/third_party/crashpad/crashpad/handler/mac/crash_report_exception_handler.h |
index 63d9bef303043ace41547ac934abcc89047eb2d6..b878cfe4798bb9bc6969382d4968374452da6b77 100644 |
--- a/third_party/crashpad/crashpad/handler/mac/crash_report_exception_handler.h |
+++ b/third_party/crashpad/crashpad/handler/mac/crash_report_exception_handler.h |
@@ -23,6 +23,7 @@ |
#include "base/macros.h" |
#include "client/crash_report_database.h" |
#include "handler/crash_report_upload_thread.h" |
+#include "handler/user_stream_data_source.h" |
#include "util/mach/exc_server_variants.h" |
namespace crashpad { |
@@ -49,7 +50,8 @@ class CrashReportExceptionHandler : public UniversalMachExcServer::Interface { |
CrashReportExceptionHandler( |
CrashReportDatabase* database, |
CrashReportUploadThread* upload_thread, |
- const std::map<std::string, std::string>* process_annotations); |
+ const std::map<std::string, std::string>* process_annotations, |
+ const UserStreamDataSources* user_stream_data_sources); |
~CrashReportExceptionHandler(); |
@@ -77,6 +79,7 @@ class CrashReportExceptionHandler : public UniversalMachExcServer::Interface { |
CrashReportDatabase* database_; // weak |
CrashReportUploadThread* upload_thread_; // weak |
const std::map<std::string, std::string>* process_annotations_; // weak |
+ const UserStreamDataSources* user_stream_data_sources_; // weak |
DISALLOW_COPY_AND_ASSIGN(CrashReportExceptionHandler); |
}; |