chromium/mojo/public/cpp/platform/platform_channel_server_posix.cc

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

#include "mojo/public/cpp/platform/platform_channel_server.h"

#include <memory>
#include <utility>

#include "base/check.h"
#include "base/files/scoped_file.h"
#include "base/message_loop/message_pump_for_io.h"
#include "base/notreached.h"
#include "base/task/current_thread.h"
#include "mojo/public/cpp/platform/platform_channel_endpoint.h"
#include "mojo/public/cpp/platform/platform_handle.h"
#include "mojo/public/cpp/platform/socket_utils_posix.h"

namespace mojo {

namespace {

class ListenerImpl : public PlatformChannelServer::Listener,
                     public base::MessagePumpForIO::FdWatcher {};

}  // namespace

std::unique_ptr<PlatformChannelServer::Listener>
PlatformChannelServer::Listener::Create() {}

}  // namespace mojo