// 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 "remoting/base/fqdn.h" #include "build/build_config.h" #if BUILDFLAG(IS_WIN) #include "base/logging.h" #include "base/strings/utf_string_conversions.h" // Needed for GetComputerNameExW/ComputerNameDnsFullyQualified. #include <windows.h> #else #include "net/base/network_interfaces.h" #endif namespace remoting { std::string GetFqdn() { … } } // namespace remoting