c14f7b7d0b
* refactor: remove unused declaration of electron::kSHA1Certificate usage removed in13a1d79
* refactor: remove unused declaration of electron::kSHA1MajorDescription usage removed in13a1d79
* refactor: remove unused declaration of electron::kSHA1MinorDescription usage removed in13a1d79
* refactor: remove unused declaration of electron::kCertificateError usage removed in13a1d79
* refactor: remove unused declaration of electron::kValidCertificate usage removed in13a1d79
* refactor: remove unused declaration of electron::kValidCertificateDescription usage removed in13a1d79
* refactor: remove unused declaration of electron::kSecureProtocol, kSecureProtocolDescription usage removed in497f5a1
* refactor: remove electron::options::kPreloadScripts removed inbad8d5e0
* refactor: remove electron::options::kImageAnimationPolicy removed in385d0f5
27 lines
866 B
C++
27 lines
866 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";
|
|
|
|
#if BUILDFLAG(ENABLE_RUN_AS_NODE)
|
|
const char kRunAsNode[] = "ELECTRON_RUN_AS_NODE";
|
|
#endif
|
|
|
|
#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
|