chromium/third_party/ipcz/src/ipcz/features.cc

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ipcz/features.h"

#include <algorithm>
#include <cstddef>

#include "ipcz/ipcz.h"
#include "ipcz/message.h"

#include "third_party/abseil-cpp/absl/types/span.h"

namespace ipcz {

Features Features::Intersect(const Features& rhs) const {}

// static
Features Features::FromNodeOptions(const IpczCreateNodeOptions* options) {}

uint32_t Features::Serialize(Message& message) const {}

Features Features::Deserialize(Message& message, uint32_t offset) {}

void Features::SetFeatureEnabled(IpczFeature feature, bool enabled) {}

}  // namespace ipcz