mirror of https://github.com/electron/electron
26 lines
825 B
C++
26 lines
825 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.
|
|
|
|
#include "shell/common/electron_constants.h"
|
|
|
|
namespace electron {
|
|
|
|
const char kBrowserForward[] = "browser-forward";
|
|
const char kBrowserBackward[] = "browser-backward";
|
|
|
|
const char kDeviceVendorIdKey[] = "vendorId";
|
|
const char kDeviceProductIdKey[] = "productId";
|
|
const char kDeviceSerialNumberKey[] = "serialNumber";
|
|
|
|
const char kRunAsNode[] = "ELECTRON_RUN_AS_NODE";
|
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
|
const char kPDFExtensionPluginName[] = "Chromium PDF Viewer";
|
|
const char kPDFInternalPluginName[] = "Chromium PDF Plugin";
|
|
const base::FilePath::CharType kPdfPluginPath[] =
|
|
FILE_PATH_LITERAL("internal-pdf-viewer");
|
|
#endif // BUILDFLAG(ENABLE_PDF_VIEWER)
|
|
|
|
} // namespace electron
|