// Copyright (c) 2022 Slack Technologies, Inc. // Use of this source code is governed by the MIT license that can be // found in the LICENSE file. #include #include #include "base/at_exit.h" #include "base/base_switches.h" #include "base/command_line.h" #include "base/i18n/icu_util.h" #include "content/public/app/content_main.h" #include "electron/buildflags/buildflags.h" #include "electron/fuses.h" #include "shell/app/electron_main_delegate.h" // NOLINT #include "shell/app/node_main.h" #include "shell/app/uv_stdio_fix.h" #include "shell/common/electron_command_line.h" #include "shell/common/electron_constants.h" int main(int argc, char* argv[]) { FixStdioStreams(); #if BUILDFLAG(ENABLE_RUN_AS_NODE) char* indicator = getenv(electron::kRunAsNode); if (electron::fuses::IsRunAsNodeEnabled() && indicator && indicator[0] != '\0') { base::i18n::InitializeICU(); base::AtExitManager atexit_manager; return electron::NodeMain(argc, argv); } #endif electron::ElectronMainDelegate delegate; content::ContentMainParams params(&delegate); electron::ElectronCommandLine::Init(argc, argv); params.argc = argc; params.argv = const_cast(argv); base::CommandLine::Init(params.argc, params.argv); return content::ContentMain(std::move(params)); }