// 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. #ifndef COMPONENTS_NAMED_MOJO_IPC_SERVER_ENDPOINT_OPTIONS_H_ #define COMPONENTS_NAMED_MOJO_IPC_SERVER_ENDPOINT_OPTIONS_H_ #include <optional> #include "build/build_config.h" #include "mojo/public/c/system/invitation.h" #include "mojo/public/cpp/platform/named_platform_channel.h" #if BUILDFLAG(IS_WIN) #include <string> #endif namespace named_mojo_ipc_server { // Options used by NamedMojoIpcServer to start the server endpoint. struct EndpointOptions { … }; } // namespace named_mojo_ipc_server #endif // COMPONENTS_NAMED_MOJO_IPC_SERVER_ENDPOINT_OPTIONS_H_