chromium/third_party/ipcz/src/ipcz/driver_memory_mapping.cc

// 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.

#include "ipcz/driver_memory_mapping.h"

#include <algorithm>

namespace ipcz {

DriverMemoryMapping::DriverMemoryMapping() = default;

DriverMemoryMapping::DriverMemoryMapping(const IpczDriver& driver,
                                         IpczDriverHandle mapping_handle,
                                         void* address,
                                         size_t size)
    :{}

DriverMemoryMapping::DriverMemoryMapping(DriverMemoryMapping&& other)
    :{}

DriverMemoryMapping& DriverMemoryMapping::operator=(
    DriverMemoryMapping&& other) {}

DriverMemoryMapping::~DriverMemoryMapping() {}

void DriverMemoryMapping::Unmap() {}

}  // namespace ipcz