// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/stability_report/stability_report_data_source.h" #include "third_party/crashpad/crashpad/minidump/minidump_user_extension_stream_data_source.h" namespace stability_report { StabilityReportDataSource::StabilityReportDataSource( const StabilityReport& report) : … { … } size_t StabilityReportDataSource::StreamDataSize() { … } bool StabilityReportDataSource::ReadStreamData(Delegate* delegate) { … } } // namespace stability_report