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
|
|
|
|
2020-02-12 16:39:12 -08:00
|
|
|
#include "base/files/file_path.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.
|
|
|
|
extern const char kBrowserForward[];
|
|
|
|
extern const char kBrowserBackward[];
|
|
|
|
|
2022-11-22 16:50:32 -05:00
|
|
|
// Keys for Device APIs
|
|
|
|
extern const char kDeviceVendorIdKey[];
|
|
|
|
extern const char kDeviceProductIdKey[];
|
|
|
|
extern const char kDeviceSerialNumberKey[];
|
|
|
|
|
2019-06-12 23:42:21 -07:00
|
|
|
extern const char kRunAsNode[];
|
|
|
|
|
2018-10-02 01:30:53 +05:30
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
2022-03-31 03:55:38 +09:00
|
|
|
extern const char kPDFExtensionPluginName[];
|
|
|
|
extern const char kPDFInternalPluginName[];
|
2020-02-12 16:39:12 -08:00
|
|
|
extern const base::FilePath::CharType kPdfPluginPath[];
|
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_
|