#ifndef COMPONENTS_STABILITY_REPORT_USER_STREAM_DATA_SOURCE_H_
#define COMPONENTS_STABILITY_REPORT_USER_STREAM_DATA_SOURCE_H_
#include "base/process/process.h"
#include "components/stability_report/stability_report.pb.h"
#include "third_party/crashpad/crashpad/handler/user_stream_data_source.h"
namespace crashpad {
class MinidumpUserExtensionStreamDataSource;
class ProcessSnapshot;
}
namespace stability_report {
class UserStreamDataSource : public crashpad::UserStreamDataSource { … };
ProcessState& AddProcessForSnapshot(const base::ProcessId process_id,
StabilityReport* report);
}
#endif