// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_BROWSER_POSIX_FILE_DESCRIPTOR_INFO_H_ #define CONTENT_PUBLIC_BROWSER_POSIX_FILE_DESCRIPTOR_INFO_H_ #include <stddef.h> #include "base/files/file.h" #include "base/files/memory_mapped_file.h" #include "base/process/launch.h" namespace content { // PoxisFileDescriptorInfo is a collection of file descriptors which is needed // to launch a process. You should tell PosixFileDescriptorInfo which FDs // should be closed and which shouldn't so that it can take care of the // lifetime of FDs. // // See base/process/launcher.h for more details about launching a process. class PosixFileDescriptorInfo { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_POSIX_FILE_DESCRIPTOR_INFO_H_