// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/named_mojo_ipc_server/named_mojo_ipc_util.h" #include <string> #include <string_view> #include "build/build_config.h" #if BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_MAC) #include "base/files/file_path.h" #include "base/files/file_util.h" #include "base/logging.h" #endif namespace named_mojo_ipc_server { mojo::NamedPlatformChannel::ServerName WorkingDirectoryIndependentServerNameFromUTF8(std::string_view name) { … } } // namespace named_mojo_ipc_server