2015-12-01 08:21:15 +00: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 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_COMMON_ELECTRON_CONSTANTS_H_
|
|
|
|
#define ELECTRON_SHELL_COMMON_ELECTRON_CONSTANTS_H_
|
2015-12-01 08:21:15 +00:00
|
|
|
|
2020-02-13 00:39:12 +00:00
|
|
|
#include "base/files/file_path.h"
|
2019-06-13 06:42:21 +00:00
|
|
|
#include "build/build_config.h"
|
2018-10-01 20:00:53 +00:00
|
|
|
#include "electron/buildflags/buildflags.h"
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2015-12-01 08:21:15 +00:00
|
|
|
|
2018-12-05 17:35:59 +00:00
|
|
|
// The app-command in NativeWindow.
|
|
|
|
extern const char kBrowserForward[];
|
|
|
|
extern const char kBrowserBackward[];
|
|
|
|
|
2016-04-11 09:36:33 +00:00
|
|
|
// Strings describing Chrome security policy for DevTools security panel.
|
|
|
|
extern const char kSHA1Certificate[];
|
|
|
|
extern const char kSHA1MajorDescription[];
|
|
|
|
extern const char kSHA1MinorDescription[];
|
|
|
|
extern const char kCertificateError[];
|
|
|
|
extern const char kValidCertificate[];
|
|
|
|
extern const char kValidCertificateDescription[];
|
|
|
|
extern const char kSecureProtocol[];
|
|
|
|
extern const char kSecureProtocolDescription[];
|
2015-12-01 08:21:15 +00:00
|
|
|
|
2022-11-22 21:50:32 +00:00
|
|
|
// Keys for Device APIs
|
|
|
|
extern const char kDeviceVendorIdKey[];
|
|
|
|
extern const char kDeviceProductIdKey[];
|
|
|
|
extern const char kDeviceSerialNumberKey[];
|
|
|
|
|
2019-06-13 06:42:21 +00:00
|
|
|
#if BUILDFLAG(ENABLE_RUN_AS_NODE)
|
|
|
|
extern const char kRunAsNode[];
|
|
|
|
#endif
|
|
|
|
|
2018-10-01 20:00:53 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
2022-03-30 18:55:38 +00:00
|
|
|
extern const char kPDFExtensionPluginName[];
|
|
|
|
extern const char kPDFInternalPluginName[];
|
2020-02-13 00:39:12 +00:00
|
|
|
extern const base::FilePath::CharType kPdfPluginPath[];
|
2018-10-01 20:00:53 +00:00
|
|
|
#endif // BUILDFLAG(ENABLE_PDF_VIEWER)
|
2017-01-23 13:20:30 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2015-12-01 08:21:15 +00:00
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_COMMON_ELECTRON_CONSTANTS_H_
|