// 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. #ifndef BASE_FILE_DESCRIPTOR_STORE_H_ #define BASE_FILE_DESCRIPTOR_STORE_H_ #include <map> #include <string> #include "base/base_export.h" #include "base/files/memory_mapped_file.h" #include "base/files/scoped_file.h" namespace base { // The file descriptor store is used to associate file descriptors with keys // that must be unique. // It is used to share file descriptors from a process to its child. class BASE_EXPORT FileDescriptorStore { … }; } // namespace base #endif // BASE_FILE_DESCRIPTOR_STORE_H_