chromium/ipc/ipc_platform_file_attachment_posix.cc

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

#include "ipc/ipc_platform_file_attachment_posix.h"

#include <tuple>
#include <utility>

namespace IPC {
namespace internal {

PlatformFileAttachment::PlatformFileAttachment(base::PlatformFile file)
    :{}

PlatformFileAttachment::PlatformFileAttachment(base::ScopedFD file)
    :{}

PlatformFileAttachment::~PlatformFileAttachment() = default;

MessageAttachment::Type PlatformFileAttachment::GetType() const {}

base::PlatformFile PlatformFileAttachment::TakePlatformFile() {}

base::PlatformFile GetPlatformFile(
    scoped_refptr<MessageAttachment> attachment) {}

}  // namespace internal
}  // namespace IPC