// 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. #include "partition_alloc/partition_alloc_base/files/file_util.h" #include "partition_alloc/partition_alloc_base/posix/eintr_wrapper.h" namespace partition_alloc::internal::base { bool ReadFromFD(int fd, char* buffer, size_t bytes) { … } } // namespace partition_alloc::internal::base