05d39d8313
* feat: remove enable_run_as_node flag * drop features.isRunAsNodeEnabled() * use IsEnvSet() helper in electron_main_linux.cc * cleanup [[maybe_unused]] --------- Co-authored-by: Milan Burda <miburda@microsoft.com>
33 lines
969 B
C++
33 lines
969 B
C++
// Copyright (c) 2015 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ELECTRON_SHELL_COMMON_ELECTRON_CONSTANTS_H_
|
|
#define ELECTRON_SHELL_COMMON_ELECTRON_CONSTANTS_H_
|
|
|
|
#include "base/files/file_path.h"
|
|
#include "build/build_config.h"
|
|
#include "electron/buildflags/buildflags.h"
|
|
|
|
namespace electron {
|
|
|
|
// The app-command in NativeWindow.
|
|
extern const char kBrowserForward[];
|
|
extern const char kBrowserBackward[];
|
|
|
|
// Keys for Device APIs
|
|
extern const char kDeviceVendorIdKey[];
|
|
extern const char kDeviceProductIdKey[];
|
|
extern const char kDeviceSerialNumberKey[];
|
|
|
|
extern const char kRunAsNode[];
|
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
|
extern const char kPDFExtensionPluginName[];
|
|
extern const char kPDFInternalPluginName[];
|
|
extern const base::FilePath::CharType kPdfPluginPath[];
|
|
#endif // BUILDFLAG(ENABLE_PDF_VIEWER)
|
|
|
|
} // namespace electron
|
|
|
|
#endif // ELECTRON_SHELL_COMMON_ELECTRON_CONSTANTS_H_
|