// 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_IPCZ_DRIVER_OBJECT_H_ #define IPCZ_SRC_IPCZ_DRIVER_OBJECT_H_ #include <cstdint> #include "ipcz/ipcz.h" #include "third_party/abseil-cpp/absl/types/span.h" #include "util/ref_counted.h" namespace ipcz { class DriverTransport; // Owns an IpczDriverHandle and exposes a generic interface for serialization // and deserialization through the driver. class DriverObject { … }; } // namespace ipcz #endif // IPCZ_SRC_IPCZ_DRIVER_OBJECT_H_