chromium/sandbox/linux/syscall_broker/broker_channel.cc

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

#include "sandbox/linux/syscall_broker/broker_channel.h"

#include <sys/socket.h>
#include <sys/types.h>

#include "base/check.h"

namespace sandbox {

namespace syscall_broker {

// static
void BrokerChannel::CreatePair(EndPoint* reader, EndPoint* writer) {}

}  // namespace syscall_broker

}  // namespace sandbox