fix: building with enable_run_as_node disabled (#18892)

This commit is contained in:
trop[bot]
2019-06-19 23:48:04 -07:00
committed by Shelley Vohr
parent 7fa41e3302
commit 4868c95425

View File

@@ -24,8 +24,13 @@ const char kCrashpadProcess[] = "crash-handler";
const char kCrashesDirectoryKey[] = "crashes-directory";
CrashReporter::CrashReporter() {
std::unique_ptr<base::Environment> env = base::Environment::Create();
if (env->HasVar(atom::kRunAsNode)) {
#if BUILDFLAG(ENABLE_RUN_AS_NODE)
bool run_as_node = base::Environment::Create()->HasVar(atom::kRunAsNode);
#else
bool run_as_node = false;
#endif
if (run_as_node) {
process_type_ = "node";
} else {
auto* cmd = base::CommandLine::ForCurrentProcess();