chromium/components/stability_report/user_stream_data_source_posix.cc

// 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/user_stream_data_source_posix.h"

#include "base/process/process_metrics.h"
#include "components/stability_report/stability_report_data_source.h"
#include "third_party/crashpad/crashpad/snapshot/process_snapshot.h"

namespace stability_report {

namespace {

// Adds file descriptor information to the `process_state` reference.
void CollectFileDescriptorInfo(ProcessState& process_state,
                               const base::ProcessId process_id) {}

}  // namespace

std::unique_ptr<crashpad::MinidumpUserExtensionStreamDataSource>
UserStreamDataSourcePosix::ProduceStreamData(
    crashpad::ProcessSnapshot* process_snapshot) {}

}  // namespace stability_report