// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include <optional> #include "base/functional/bind.h" #include "base/logging.h" #include "base/test/launcher/unit_test_launcher.h" #include "base/test/test_suite.h" #include "build/build_config.h" #include "chrome/enterprise_companion/enterprise_companion_branding.h" #if BUILDFLAG(IS_POSIX) #include <unistd.h> #elif BUILDFLAG(IS_WIN) #include <shlobj.h> #endif namespace { bool IsUserElevated() { … } std::optional<base::FilePath> GetLogFilePath() { … } } // namespace int main(int argc, char* argv[]) { … }