2015-12-01 16:21:15 +08:00
|
|
|
// Copyright (c) 2015 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#ifndef ELECTRON_SHELL_COMMON_ELECTRON_CONSTANTS_H_
|
|
|
|
#define ELECTRON_SHELL_COMMON_ELECTRON_CONSTANTS_H_
|
2015-12-01 16:21:15 +08:00
|
|
|
|
2024-10-29 04:30:12 -05:00
|
|
|
#include <string_view>
|
|
|
|
|
|
|
|
#include "base/strings/cstring_view.h"
|
2018-10-02 01:30:53 +05:30
|
|
|
#include "electron/buildflags/buildflags.h"
|
|
|
|
|
2015-12-01 16:21:15 +08:00
|
|
|
namespace electron {
|
|
|
|
|
2018-12-05 09:35:59 -08:00
|
|
|
// The app-command in NativeWindow.
|
2024-10-29 04:30:12 -05:00
|
|
|
inline constexpr std::string_view kBrowserForward = "browser-forward";
|
|
|
|
inline constexpr std::string_view kBrowserBackward = "browser-backward";
|
2018-12-05 09:35:59 -08:00
|
|
|
|
2022-11-22 16:50:32 -05:00
|
|
|
// Keys for Device APIs
|
2024-10-29 04:30:12 -05:00
|
|
|
inline constexpr std::string_view kDeviceVendorIdKey = "vendorId";
|
|
|
|
inline constexpr std::string_view kDeviceProductIdKey = "productId";
|
|
|
|
inline constexpr std::string_view kDeviceSerialNumberKey = "serialNumber";
|
2022-11-22 16:50:32 -05:00
|
|
|
|
2024-10-29 04:30:12 -05:00
|
|
|
inline constexpr base::cstring_view kRunAsNode = "ELECTRON_RUN_AS_NODE";
|
2019-06-12 23:42:21 -07:00
|
|
|
|
2018-10-02 01:30:53 +05:30
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
2024-10-29 04:30:12 -05:00
|
|
|
inline constexpr std::string_view kPDFExtensionPluginName =
|
|
|
|
"Chromium PDF Viewer";
|
|
|
|
inline constexpr std::string_view kPDFInternalPluginName =
|
|
|
|
"Chromium PDF Plugin";
|
2018-10-02 01:30:53 +05:30
|
|
|
#endif // BUILDFLAG(ENABLE_PDF_VIEWER)
|
2017-01-23 18:50:30 +05:30
|
|
|
|
2015-12-01 16:21:15 +08:00
|
|
|
} // namespace electron
|
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#endif // ELECTRON_SHELL_COMMON_ELECTRON_CONSTANTS_H_
|