// 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_BROWSER_POSIX_FILE_DESCRIPTOR_INFO_IMPL_H_ #define CONTENT_BROWSER_POSIX_FILE_DESCRIPTOR_INFO_IMPL_H_ #include <stddef.h> #include <map> #include <memory> #include <vector> #include "base/files/memory_mapped_file.h" #include "content/common/content_export.h" #include "content/public/browser/posix_file_descriptor_info.h" namespace content { class PosixFileDescriptorInfoImpl : public PosixFileDescriptorInfo { … }; } // namespace content #endif // CONTENT_BROWSER_POSIX_FILE_DESCRIPTOR_INFO_IMPL_H_