// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef IPCZ_SRC_REFERENCE_DRIVERS_MEMORY_H_ #define IPCZ_SRC_REFERENCE_DRIVERS_MEMORY_H_ #include "reference_drivers/file_descriptor.h" #include "third_party/abseil-cpp/absl/types/span.h" namespace ipcz::reference_drivers { // A basic driver memory implementation for ipcz, which uses Linux-specific // support for an anonymous file living entirely in RAM (see memfd_create()). class MemfdMemory { … }; } // namespace ipcz::reference_drivers #endif // IPCZ_SRC_REFERENCE_DRIVERS_MEMORY_H_