chromium/content/common/shared_file_util.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/common/shared_file_util.h"

#include "base/file_descriptor_store.h"
#include "base/files/memory_mapped_file.h"
#include "base/files/scoped_file.h"
#include "base/logging.h"
#include "base/posix/global_descriptors.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_split.h"
#include "content/public/common/content_switches.h"

namespace content {

namespace {
void PopulateFDsFromCommandLine(bool use_global_descriptors) {}
}  // namespace

void PopulateFileDescriptorStoreFromGlobalDescriptors() {}

void PopulateFileDescriptorStoreFromFdTable() {}

void SharedFileSwitchValueBuilder::AddEntry(const std::string& key_str,
                                            int key_id) {}

std::optional<std::map<int, std::string>> ParseSharedFileSwitchValue(
    const std::string& value) {}

}  // namespace content