chromium/mojo/public/cpp/platform/platform_channel_server.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>

namespace mojo {

PlatformChannelServer::PlatformChannelServer() = default;

PlatformChannelServer::~PlatformChannelServer() = default;

// static
void PlatformChannelServer::WaitForConnection(
    PlatformChannelServerEndpoint server_endpoint,
    ConnectionCallback callback) {}

bool PlatformChannelServer::TryListen(
    PlatformChannelServerEndpoint& server_endpoint,
    ConnectionCallback& callback) {}

void PlatformChannelServer::Stop() {}

}  // namespace mojo