chromium/third_party/ipcz/src/ipcz/handle_type.h

// 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_HANDLE_TYPE_H_
#define IPCZ_SRC_IPCZ_HANDLE_TYPE_H_

#include <cstdint>

#include "ipcz/ipcz.h"

namespace ipcz {

// Identifies the type of each IpczHandle attached to a serialized parcel.
enum class HandleType : uint32_t {};

}  // namespace ipcz

#endif  // IPCZ_SRC_IPCZ_HANDLE_TYPE_H_